diff --git a/snes/Makefile b/snes/Makefile index 42ac7af..51ee6d3 100644 --- a/snes/Makefile +++ b/snes/Makefile @@ -1,8 +1,8 @@ OBJS = header.ips reset.o65 main.o65 font.o65 palette.o65 data.o65 const.o65 logo.o65 logospr.o65 text.o65 dma.o65 menu.o65 pad.o65 time.o65 mainmenu.o65 # gfx.o65 # vars.o65 -all: menu.bin menu.smc +all: menu.bin -menu.smc: menu.bin +smc: menu.bin cat menu.bin sd2snes.rom > $@ menu.bin: $(OBJS) sneslink -fsmc -o $@ $^ diff --git a/snes/boot/Makefile b/snes/boot/Makefile index 009bafd..7175fd1 100644 --- a/snes/boot/Makefile +++ b/snes/boot/Makefile @@ -1,9 +1,7 @@ OBJS = header.ips reset.o65 main.o65 font.o65 palette.o65 data.o65 const.o65 text.o65 dma.o65 # gfx.o65 # vars.o65 -all: menu.bin menu.smc +all: menu.bin -menu.smc: menu.bin - cat menu.bin sd2snes.rom > $@ menu.bin: $(OBJS) sneslink -fsmc -o $@ $^