psx emulator
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

15 lines
235 B

CFLAGS ?= -Wall -Wextra -Iinclude
CFILES := $(shell find src -type f -name '*.c')
OFILES := $(CFILES:%.c=%.o)
.PHONY: clean
psxc: $(OFILES)
$(CC) $(OFILES) -o $@
%.o: %.c
$(CC) $(CFLAGS) -c $< -o $@
clean:
rm -f $(OFILES) psxc