X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=Makefile;h=f8b9ab717bda65eff153e7cc23246470f0389691;hb=1708aee980b4ca619f7ebe5edc088fd8136d6a0e;hp=ee7c979c4518c68812ec2820946576c34a5e1963;hpb=1e34dbf4b094e7f9c53c9ad343b133fb71032bdd;p=c128-kasse diff --git a/Makefile b/Makefile index ee7c979..f8b9ab7 100644 --- a/Makefile +++ b/Makefile @@ -1,14 +1,56 @@ +# Note: this are my paths to cc65 as there is no gentoo ebuild, sorry for that. +# Please use the path below if you've installed cc65 system-wide +#CC=~/customSoftware/cc65-2.11.0/src/cc65/cc65 -I ~/customSoftware/cc65-2.11.0/include +#CA=~/customSoftware/cc65-2.11.0/src/ca65/ca65 +#CL=~/customSoftware/cc65-2.11.0/src/cl65/cl65 +CC=cc65 +CA=ca65 +CL=cl65 -kasse: kasse.o - cl65 -t c128 kasse.o +src/%.o: src/%.c include/%.h + ${CC} -O -I include -t c128 $< + ${CA} -I include -t c128 src/$$(basename $< .c).s -kasse.o: kasse.s - ca65 -t c128 kasse.s +test/%.o: test/%.c + ${CC} -O -I include -t c128 $< + ${CA} -I include -t c128 test/$$(basename $< .c).s -kasse.s: kasse.c - cc65 -t c128 kasse.c +kasse: src/config.o src/kasse.o src/general.o src/credit_manager.o src/c128time.o + # See above, please just kill the PATH-definition + # cp /tmp/cc65/lib/c128* . + PATH=${PATH}:~/customSoftware/cc65-2.11.0/src/ld65:/tmp/cc65/lib ${CL} -t c128 src/c128time.o src/config.o src/kasse.o src/general.o src/credit_manager.o -o kasse -all: kasse +itemz: src/config.o src/itemz.o src/general.o src/credit_manager.o + # See above, please just kill the PATH-definition + # cp /tmp/cc65/lib/c128* . + PATH=${PATH}:~/customSoftware/cc65-2.11.0/src/ld65:/tmp/cc65/lib ${CL} -t c128 src/config.o src/itemz.o src/general.o src/credit_manager.o -o itemz + +all: kasse itemz + +package: all + cp images/kasse.d64 . + c1541 -attach kasse.d64 -delete state || exit 0 + c1541 -attach kasse.d64 -delete items || exit 0 + c1541 -attach kasse.d64 -delete kasse || exit 0 + c1541 -attach kasse.d64 -delete itemz || exit 0 + c1541 -attach kasse.d64 -write kasse || exit 0 + c1541 -attach kasse.d64 -write itemz || exit 0 +# c1541 -attach kasse.d64 -write state || exit 0 +# c1541 -attach kasse.d64 -write items || exit 0 + +test: src/config.o test/test.o src/general.o + ${CL} -t c128 src/config.o test/test.o src/general.o -o test + +test-package: test + c1541 -attach test.d64 -delete state || exit 0 + c1541 -attach test.d64 -delete items || exit 0 + c1541 -attach test.d64 -delete test || exit 0 + c1541 -attach test.d64 -write test || exit 0 + c1541 -attach test.d64 -write state || exit 0 + c1541 -attach test.d64 -write items || exit 0 clean: - rm -f *.s *.o + rm -rf src/*.o src/*.s test/*.o test/*.s + +dist-clean: clean + rm kasse itemz kasse.d64