Makefile 378 B

1234567891011121314151617
  1. OBJS = header.ips reset.o65 main.o65 font.o65 palette.o65 data.o65 const.o65 logo.o65 # gfx.o65 # vars.o65
  2. all: menu.bin
  3. menu.bin: $(OBJS)
  4. sneslink -fsmc -o $@ $^
  5. # Generic rule to create .o65 out from .a65
  6. %.o65: %.a65
  7. snescom -J -Wall -o $@ $<
  8. # Generic rule to create .ips out from .a65
  9. %.ips: %.a65
  10. snescom -I -J -Wall -o $@ $<
  11. clean:
  12. rm -f *.ips *.o65 *~ menu.bin