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.

16 lines
297 B

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