]> git.sur5r.net Git - c128-kasse/blob - Makefile
remove malloc, fix user interface
[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 -O
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 %.o: %.c
11         ${CC} -t c128 $<
12         ${CA} -t c128 $$(basename $< .c).s
13
14 all: config.o kasse.o general.o credit_manager.o time.o
15         # See above, please just kill the PATH-definition
16         cp /tmp/cc65/lib/c128* .
17         PATH=${PATH}:~/customSoftware/cc65-2.11.0/src/ld65:/tmp/cc65/lib ${CL} -t c128 *.o -o kasse
18
19 package: all
20         c1541 -attach kasse.d64 -delete state || exit 0 
21         c1541 -attach kasse.d64 -delete items  || exit 0
22         c1541 -attach kasse.d64 -delete kasse  || exit 0
23         c1541 -attach kasse.d64 -write kasse  || exit 0
24         c1541 -attach kasse.d64 -write state || exit 0 
25         c1541 -attach kasse.d64 -write items  || exit 0
26
27 test: config.o test.o general.o
28         ${CL} -t c128 config.o test.o general.o -o test
29
30 test-package: test
31         c1541 -attach test.d64 -delete state || exit 0 
32         c1541 -attach test.d64 -delete items  || exit 0
33         c1541 -attach test.d64 -delete test  || exit 0
34         c1541 -attach test.d64 -write test  || exit 0
35         c1541 -attach test.d64 -write state || exit 0 
36         c1541 -attach test.d64 -write items  || exit 0
37
38 clean:
39         rm -rf *.o *.s
40         
41 dist-clean: clean
42         rm kasse test 
43