mirror of
https://github.com/cc65/cc65.git
synced 2024-12-27 15:29:46 +00:00
14 lines
201 B
Makefile
14 lines
201 B
Makefile
|
|
all: conio.pce
|
|
|
|
conio.pce: conio.c
|
|
../../../bin/cl65 -t pce conio.c --mapfile conio.map -o conio.pce
|
|
|
|
clean:
|
|
$(RM) conio.pce
|
|
$(RM) conio.map
|
|
|
|
test: conio.pce
|
|
mednafen -force_module pce conio.pce
|
|
|