CC=cc65 AS=ca65 LD=cl65 INCLUDES:=$(wildcard include/*.h) include/version.h GV:=$(shell git describe --tags --always) CFLAGS= -I include -t c128 -g .PHONY: include/version.h clean dist-clean format all: kasse itemz build/%.o: src/%.c ${INCLUDES} ${CC} ${CFLAGS} -O $< -o build/$(addsuffix .s,$(shell basename $< .c)) ${AS} ${CFLAGS} build/$(addsuffix .s,$(shell basename $< .c)) -o $@ include/version.h: mkdir -p build echo "#define GV \"${GV}\"" > $@ kasse: build/config.o build/kasse.o build/general.o build/credit_manager.o build/c128time.o build/print.o ${LD} -t c128 $^ -o $@ itemz: build/config.o build/itemz.o build/general.o build/credit_manager.o build/c128time.o build/print.o ${LD} -t c128 $^ -o $@ cat: build/general.o build/cat.o ${LD} -t c128 $^ -o $@ package: all c1541 -format "${GV}",KA d64 kasse.d64 c1541 -attach kasse.d64 -write kasse c1541 -attach kasse.d64 -write itemz [ -e state ] && c1541 -attach kasse.d64 -write state || exit 0 [ -e items ] && c1541 -attach kasse.d64 -write items || exit 0 test: build/config.o test/test.o build/general.o cl65 -t c128 $^ -o build/test test-package: test c1541 -format "test",TE d64 test.d64 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 -rf build/*.o build/*.s test/*.o test/*.s dist-clean: clean rm -f kasse itemz kasse.d64 format: clang-format-3.9 -i **/*.[ch]