diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..77a4a94 --- /dev/null +++ b/Makefile @@ -0,0 +1,35 @@ +all: defender.ca65 + +html: defender.html + +test: deftest.rom + +clean: + rm -f *.o tmp.lbl 1 2 3 foo bar .*.swp deftest.rom dumptxt dumpgttxt + +push: + touch defender.info + $(MAKE) clean all html + git push + +tools: dumpgttxt dumptxt + +defender.ca65: defender.info + da65 -i defender.info + +defender.html: defender.ca65 + vim +TOhtml '+w!defender.html' '+qall' defender.ca65 + +deftest.rom: defender.ca65 + ca65 -t none -o deftest.o -g defender.ca65 + ld65 -t none -o deftest.rom -Ln tmp.lbl --start-addr 0x8000 deftest.o + @grep -v '\.__' tmp.lbl | sed 's, \., ,' > deftest.lbl + @rm -f tmp.lbl *.o + @echo + @cmp defender.rom deftest.rom && echo "=== Binary reassembles correctly" || echo "*** Binary FAILS to reassemble correctly ***" + @echo ; echo "-----------------------" + @echo labels add deftest.lbl + @echo "-----------------------" ; echo + @atari800 -nobasic -cart-type 2 -cart deftest.rom + +.PHONY: all clean push html |