]> git.sur5r.net Git - cc65/blob - testcode/lib/accelerator/Makefile
c6423e44f40e1ed56517a1efc64242842e1bcb00
[cc65] / testcode / lib / accelerator / Makefile
1 CL ?= cl65
2
3 all: c64-scpu-test.prg c128-scpu-test.prg c64dtv-test.prg c64-c128-test.prg
4
5 c64-scpu-test.prg: c64-c128-scpu-test.c
6         $(CL) -t c64 c64-c128-scpu-test.c -o c64-scpu-test.prg
7
8 c128-scpu-test.prg: c64-c128-scpu-test.c
9         $(CL) -t c128 c64-c128-scpu-test.c -o c128-scpu-test.prg
10
11 c64dtv-test.prg: c64dtv-test.c
12         $(CL) -t c64 c64dtv-test.c -o c64dtv-test.prg
13
14 c64-c128-test.prg: c64-c128-test.c
15         $(CL) -t c64 c64-c128-test.c -o c64-c128-test.prg