From e031e82c4540a27f3285c9cd624a6246d0e576e5 Mon Sep 17 00:00:00 2001 From: ikari Date: Mon, 25 Apr 2011 03:41:37 +0200 Subject: [PATCH] SNES menu/bootloader: update Makefiles for real this time --- snes/Makefile | 4 ++-- snes/boot/Makefile | 4 +--- 2 files changed, 3 insertions(+), 5 deletions(-) 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 $@ $^