From 660548bae6b24e50a087fd7d6de81ea67801aa96 Mon Sep 17 00:00:00 2001 From: Ian C Date: Wed, 12 Sep 2018 20:35:55 +0000 Subject: Added makefile for GFX and added a library to import the graphics. --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'Makefile') 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) -- cgit v1.2.3