mirror of
https://github.com/cc65/cc65.git
synced 2025-01-12 17:30:50 +00:00
13 lines
212 B
Makefile
13 lines
212 B
Makefile
|
|
all: conio.pce
|
|
|
|
conio.pce: conio.c
|
|
../../../bin/cl65 -t pce conio.c ../../../joy/pce-stdjoy.joy --mapfile conio.map -o conio.pce
|
|
|
|
clean:
|
|
$(RM) conio.pce
|
|
|
|
test: conio.pce
|
|
mednafen -force_module pce conio.pce
|
|
|