]> git.sur5r.net Git - cc65/blob - testcode/lib/accelerator/Makefile
9ff4d96b4e914ecf49c445e705f0ce132d75887d
[cc65] / testcode / lib / accelerator / Makefile
1 CL ?= cl65
2
3 all:    c64-scpu-test.prg c128-scpu-test.prg c64dtv-test.prg \
4         c64-c128-test.prg c128-test.prg chameleon-test.prg \
5         c65-test.prg
6
7 c64-scpu-test.prg: c64-c128-scpu-test.c
8         $(CL) -t c64 c64-c128-scpu-test.c -o c64-scpu-test.prg
9
10 c128-scpu-test.prg: c64-c128-scpu-test.c
11         $(CL) -t c128 c64-c128-scpu-test.c -o c128-scpu-test.prg
12
13 c64dtv-test.prg: c64dtv-test.c
14         $(CL) -t c64 c64dtv-test.c -o c64dtv-test.prg
15
16 c64-c128-test.prg: c64-c128-test.c
17         $(CL) -t c64 c64-c128-test.c -o c64-c128-test.prg
18
19 c128-test.prg: c64-c128-test.c
20         $(CL) -t c128 c64-c128-test.c -o c128-test.prg
21
22 chameleon-test.prg: chameleon-test.c
23         $(CL) -t c64 chameleon-test.c -o chameleon-test.prg
24
25 c65-test.prg: c65-test.c
26         $(CL) -t c64 c65-test.c -o c65-test.prg