1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-10 23:29:05 +00:00
cc65/testcode/lib/pce/Makefile
Greg King 8180ac20d3 Added code to handle the special case of a zero-length move.
Added more tests of memcpy() and memmove().
2015-11-02 17:09:45 -05:00

13 lines
224 B
Makefile

.PHONY: all clean test
all: conio.pce
conio.pce: conio.c
../../../bin/cl65 -t pce conio.c --mapfile conio.map -o conio.pce
clean:
$(RM) conio.o conio.pce conio.map
test: conio.pce
mednafen -force_module pce conio.pce