]> git.sur5r.net Git - c128-kasse/blobdiff - Makefile
README: remove emulator configuration, we use -config vicerc
[c128-kasse] / Makefile
index 881ae84dfb43ef67690d34dd8e333e23d3235164..eea1a79d4bd8068c4996f1f94263fec0d6e72faf 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,53 +1,76 @@
-# 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
-
-src/%.o: src/%.c include/%.h
-       ${CC} -O -I include -t c128 $<
-       ${CA} -I include -t c128 src/$$(basename $< .c).s
-
-test/%.o: test/%.c
-       ${CC} -O -I include -t c128 $<
-       ${CA} -I include -t c128 test/$$(basename $< .c).s
-
-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/*.o -o kasse
-
-itemz: src/config.o src/itemz.o src/general.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 -o itemz
-
-all: kasse itemz
+CC=cc65
+AS=ca65
+LD=cl65
+INCLUDES:=$(wildcard include/*.h) include/version.h include/charset_umlauts.h
+GV:=$(shell git describe --tags --always)
+CFLAGS= -I include -t c128 -g
+
+.PHONY: clean dist-clean format
+
+all: kasse itemz cat
+
+build/%.o: src/%.c ${INCLUDES}
+       ${CC} ${CFLAGS} -O $< -o build/$(addsuffix .s,$(shell basename $< .c))
+       ${AS} ${CFLAGS} build/$(addsuffix .s,$(shell basename $< .c)) -o $@
+
+build/%.o: src/%.s
+       ${AS} ${CFLAGS} $< -o $@
+
+build/%.o: test/%.c ${INCLUDES}
+       ${CC} ${CFLAGS} -O $< -o build/$(addsuffix .s,$(shell basename $< .c))
+       ${AS} ${CFLAGS} build/$(addsuffix .s,$(shell basename $< .c)) -o $@
+
+build/%.o: test/%.s
+       ${AS} ${CFLAGS} $< -o $@
+
+.git/index:
+
+include/version.h: .git/index
+       mkdir -p build
+       echo "#define GV \"${GV}\"" > $@
+
+include/charset_umlauts.h: assets/umlauts.pbm
+       ./util/mkfont assets/umlauts.pbm chars_umlauts > $@
+
+kasse: build/config.o build/kasse.o build/general.o build/credit_manager.o build/c128time.o build/print.o build/vdc_patch_charset.o build/vdc_util.o build/globals.o build/bcd2dec.o
+       ${LD} -Ln $@.lbl -t c128 $^ -o $@
+
+itemz: build/config.o build/itemz.o build/general.o build/credit_manager.o build/c128time.o build/print.o build/globals.o build/bcd2dec.o build/vdc_util.o
+       ${LD} -Ln $@.lbl -t c128 $^ -o $@
+
+cat: build/general.o build/cat.o build/config.o build/print.o build/globals.o
+       ${LD} -Ln $@.lbl -t c128 $^ -o $@
+
+charmap: build/print_charmap.o build/vdc_util.o build/vdc_patch_charset.o
+       ${LD} -Ln $@.lbl -t c128 $^ -o $@
+
+ascii: build/print_ascii.o
+       ${LD} -Ln $@.lbl -t c128 $^ -o $@
 
 package: all
-       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 -format "${GV}",KA d71 kasse.d71
+       c1541 -attach kasse.d71 -write kasse
+       c1541 -attach kasse.d71 -write itemz
+       [ -e state ] && c1541 -attach kasse.d71 -write state || exit 0
+       [ -e items ] && c1541 -attach kasse.d71 -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: build/config.o build/test.o build/general.o build/print.o build/globals.o
+       ${LD} -Ln $@.lbl -t c128 $^ -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
+       c1541 -format "test",TE d71 test.d71
+       c1541 -attach test.d71 -write test/test || exit 0
+       c1541 -attach test.d71 -write state || exit 0
+       c1541 -attach test.d71 -write items || exit 0
 
 clean:
-       rm -rf src/*.o src/*.s test/*.o test/*.s
-       
+       rm -rf build/*.o build/*.s test/test
+
 dist-clean: clean
-       rm kasse test 
+       rm -f kasse kasse.lbl itemz itemz.lbl cat cat.lbl kasse.d71
+
+format:
+       clang-format-3.9 -i **/*.[ch]
+
+vice:
+       x128 -config vicerc -autostart kasse.d71 +go64 -80col