Browse Source

SNES menu/bootloader: update Makefiles for real this time

ikari 13 years ago
parent
commit
e031e82c45
2 changed files with 3 additions and 5 deletions
  1. 2 2
      snes/Makefile
  2. 1 3
      snes/boot/Makefile

+ 2 - 2
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 $@ $^

+ 1 - 3
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 $@ $^