summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2018-09-12 20:35:55 +0000
committerIan C <ianc@noddybox.co.uk>2018-09-12 20:35:55 +0000
commit660548bae6b24e50a087fd7d6de81ea67801aa96 (patch)
tree4f10e449deb8cdf81203d4c079f241774c000c31 /Makefile
parent8212ca44e3b87ef79ffca0163fe8421d723675cb (diff)
Added makefile for GFX and added a library to import the graphics.
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)