diff options
author | Ian C <ianc@noddybox.co.uk> | 2018-09-12 20:35:55 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2018-09-12 20:35:55 +0000 |
commit | 660548bae6b24e50a087fd7d6de81ea67801aa96 (patch) | |
tree | 4f10e449deb8cdf81203d4c079f241774c000c31 /Makefile | |
parent | 8212ca44e3b87ef79ffca0163fe8421d723675cb (diff) |
Added makefile for GFX and added a library to import the graphics.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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) |