summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorISSOtm <eldredhabert0@gmail.com>2018-05-29 16:43:04 +0200
committerISSOtm <eldredhabert0@gmail.com>2018-05-29 16:43:04 +0200
commite6c75f2d8487311914abb327a67e183a188df3d7 (patch)
tree1d44142b3879d1736f4c87c1f2e9b6817fd1b2a3 /Makefile
parentcc4a3e7fe52b043900d7b2f9789cfe3cf1154f77 (diff)
Fix disassembling mistakes
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 93cfddb..8d0f2db 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@
ROMS := pokegold-spaceworld.gb
BASEROM := baserom.gb
-OBJS := home.o main.o wram.o hram.o shim.o
+OBJS := home.o main.o audio.o sram.o wram.o hram.o shim.o
# Link objects together to build a rom.
all: $(ROMS) compare
@@ -34,7 +34,7 @@ $(ROMS): $(OBJS)
rgbfix -f -v -k 01 -l 0x33 -m 0x03 -p 0 -r 3 -t "POKEMON2GOLD" $@
compare: $(ROMS) $(BASEROM)
- cmp $^
+ cmp -l $^
# Remove files generated by the build process.
clean: