diff options
author | Ian C <ianc@noddybox.co.uk> | 2016-05-06 16:00:24 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2016-05-06 16:00:24 +0000 |
commit | 3b5ebdfe6a006f51682292c44415525e178f8a4c (patch) | |
tree | 0325fe4e517a91dda7c69167ca3ad5a42e23a1b1 /Makefile | |
parent | ce29c39910f16abcf0ba818fa708011eae4f6858 (diff) |
Added barebones to build cartridge ROM
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1e31944 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +TARGET = tll-snes.sfc +LIBS = main.lib + +TARGET: main.lib + casm link.asm + +main.lib: main.asm + casm main.asm + +clean: + rm -f $(TARGET) $(LIBS) |