]> git.sur5r.net Git - c128-kasse/blob - Makefile
implement itemz.c which manages ITEMS (works)/CREDITS (TODO) files
[c128-kasse] / Makefile
1 # Note: this are my paths to cc65 as there is no gentoo ebuild, sorry for that.
2 # Please use the path below if you've installed cc65 system-wide
3 CC=~/customSoftware/cc65-2.11.0/src/cc65/cc65 -I ~/customSoftware/cc65-2.11.0/include
4 CA=~/customSoftware/cc65-2.11.0/src/ca65/ca65
5 CL=~/customSoftware/cc65-2.11.0/src/cl65/cl65
6 # CC=cc65
7 # CA=ca65
8 # CL=cl65
9
10 src/%.o: src/%.c include/%.h
11         ${CC} -O -I include -t c128 $<
12         ${CA} -I include -t c128 src/$$(basename $< .c).s
13
14 test/%.o: test/%.c
15         ${CC} -O -I include -t c128 $<
16         ${CA} -I include -t c128 test/$$(basename $< .c).s
17
18 kasse: src/config.o src/kasse.o src/general.o src/credit_manager.o src/c128time.o
19         # See above, please just kill the PATH-definition
20         cp /tmp/cc65/lib/c128* .
21         PATH=${PATH}:~/customSoftware/cc65-2.11.0/src/ld65:/tmp/cc65/lib ${CL} -t c128 src/*.o -o kasse
22
23 itemz: src/config.o src/itemz.o src/general.o
24         # See above, please just kill the PATH-definition
25         cp /tmp/cc65/lib/c128* .
26         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
27
28 all: kasse itemz
29
30 package: all
31         c1541 -attach kasse.d64 -delete state || exit 0 
32         c1541 -attach kasse.d64 -delete items  || exit 0
33         c1541 -attach kasse.d64 -delete kasse  || exit 0
34         c1541 -attach kasse.d64 -write kasse  || exit 0
35         c1541 -attach kasse.d64 -write state || exit 0 
36         c1541 -attach kasse.d64 -write items  || exit 0
37
38 test: src/config.o test/test.o src/general.o
39         ${CL} -t c128 src/config.o test/test.o src/general.o -o test
40
41 test-package: test
42         c1541 -attach test.d64 -delete state || exit 0 
43         c1541 -attach test.d64 -delete items  || exit 0
44         c1541 -attach test.d64 -delete test  || exit 0
45         c1541 -attach test.d64 -write test  || exit 0
46         c1541 -attach test.d64 -write state || exit 0 
47         c1541 -attach test.d64 -write items  || exit 0
48
49 clean:
50         rm -rf src/*.o src/*.s test/*.o test/*.s
51         
52 dist-clean: clean
53         rm kasse test