mirror of
https://github.com/cc65/cc65.git
synced 2024-11-04 17:04:58 +00:00
8180ac20d3
Added more tests of memcpy() and memmove().
13 lines
224 B
Makefile
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
|