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

2 years ago
  1. CFLAGS ?= -Wall -Wextra -Iinclude
  2. CFILES := $(shell find src -type f -name '*.c')
  3. OFILES := $(CFILES:%.c=%.o)
  4. .PHONY: clean
  5. psxc: $(OFILES)
  6. $(CC) $(OFILES) -o $@
  7. %.o: %.c
  8. $(CC) $(CFLAGS) -c $< -o $@
  9. clean:
  10. rm -f $(OFILES) psxc