summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 1e31944..9c0a07b 100644
--- a/Makefile
+++ b/Makefile
@@ -1,11 +1,14 @@
TARGET = tll-snes.sfc
-LIBS = main.lib
+LIBS = main.lib tiles.lib
-TARGET: main.lib
+$(TARGET): $(LIBS) link.asm
casm link.asm
main.lib: main.asm
casm main.asm
+tiles.lib: tiles.asm
+ casm tiles.asm
+
clean:
rm -f $(TARGET) $(LIBS)