-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile
84 lines (61 loc) · 2.37 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
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 vice setup-vice xpra
all: kasse 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/itemz.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 [email protected] -t c128 $^ -o $@
cat: build/general.o build/cat.o build/config.o build/print.o build/globals.o
${LD} -Ln [email protected] -t c128 $^ -o $@
charmap: build/print_charmap.o build/vdc_util.o build/vdc_patch_charset.o
${LD} -Ln [email protected] -t c128 $^ -o $@
ascii: build/print_ascii.o
${LD} -Ln [email protected] -t c128 $^ -o $@
package: all
c1541 -format "${GV}",KA d71 kasse.d71
c1541 -attach kasse.d71 -write kasse
[ -e credits ] && c1541 -attach kasse.d71 -write credits || exit 0
[ -e items ] && c1541 -attach kasse.d71 -write items || exit 0
test: build/config.o build/test.o build/general.o build/print.o build/globals.o
${LD} -Ln [email protected] -t c128 $^ -o test/$@
test-package: test
c1541 -format "test",TE d71 test.d71
c1541 -attach test.d71 -write test/test || exit 0
c1541 -attach test.d71 -write credits || exit 0
c1541 -attach test.d71 -write items || exit 0
clean:
rm -rf build/*.o build/*.s test/test
dist-clean: clean
rm -f kasse kasse.lbl cat cat.lbl kasse.d71
format:
clang-format-3.9 -i **/*.[ch]
setup-vice:
./.devcontainer/setup-vice.sh
vice: package
x128 -config vicerc -autostart kasse.d71 +go64 -remotemonitor -80col -speed 200
xpra:
echo '#!/bin/bash' > make-vice.bash
echo 'make vice' >> make-vice.bash
chmod +x make-vice.bash
xpra start --start=./make-vice.bash --bind-tcp=0.0.0.0:10000
check:
go test -v