X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=Makefile;h=cea7061a8957f87db5a4572b3c59419317a0a6dd;hb=47d5a9eaccab5fc00f546a074bdd9ae2234fbb06;hp=56dc731637cadf8a8c2d1cc273226b92e5511ba2;hpb=ff06a75fcf985f3beab255fdc95e5fbb8136bb4b;p=c128-kasse diff --git a/Makefile b/Makefile index 56dc731..cea7061 100644 --- a/Makefile +++ b/Makefile @@ -1,32 +1,48 @@ -%.o: %.c - cc65 -t c128 $< - ca65 -t c128 $$(basename $< .c).s +CC=cc65 +AS=ca65 +LD=cl65 +INCLUDES:=$(wildcard include/*.h) +GV:=$(shell git describe --tags --always) -all: config.o kasse.o general.o credit_manager.o time.o - cl65 -t c128 *.o -o kasse +CFLAGS += -DGV=\"${GV}\" + +%.o: %.c ${INCLUDES} + ${CC} ${CFLAGS} -O -I include -t c128 $< -o /dev/stdout | ${AS} -I include -t c128 /dev/stdin -o $@ +all: kasse itemz + +kasse: src/config.o src/kasse.o src/general.o src/credit_manager.o src/c128time.o src/print.o + ${LD} -t c128 $^ -o $@ + +itemz: src/config.o src/itemz.o src/general.o src/credit_manager.o src/c128time.o src/print.o + ${LD} -t c128 $^ -o $@ + +cat: src/general.o src/cat.o + ${LD} -t c128 $^ -o $@ 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 -write kasse || exit 0 - c1541 -attach kasse.d64 -write state || exit 0 - c1541 -attach kasse.d64 -write items || 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: config.o test.o general.o - cl65 -t c128 config.o test.o general.o -o test +test: src/config.o test/test.o src/general.o + cl65 -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 -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 + c1541 -attach test.d64 -write items || exit 0 clean: - rm -rf *.o *.s + rm -rf src/*.o src/*.s test/*.o test/*.s dist-clean: clean - rm kasse test - + rm kasse itemz kasse.d64