1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-05 21:29:03 +00:00
cc65/testcode/lib/gamate/Makefile

21 lines
885 B
Makefile
Raw Normal View History

2015-11-22 18:02:47 +00:00
2015-11-29 00:14:59 +00:00
all: audiotest.bin lcdtest.bin ctest.bin
2015-11-22 18:02:47 +00:00
audiotest.bin: audiotest.s
2015-11-29 00:14:59 +00:00
../../../bin/cl65 -l audiotest.lst -t gamate -o audiotest.bin audiotest.s
2015-11-22 18:02:47 +00:00
lcdtest.bin: lcdtest.s
2015-11-29 00:14:59 +00:00
../../../bin/cl65 -l lcdtest.lst -t gamate -o lcdtest.bin lcdtest.s
ctest.bin: ctest.c
../../../bin/cl65 -l ctest.lst -t gamate -o ctest.bin ctest.c
2015-11-22 18:02:47 +00:00
test1: lcdtest.bin
2015-11-29 00:14:59 +00:00
cd ~/Desktop/mame/winmess/ && wine mess.exe gamate -window -skip_gameinfo -cart ~/Desktop/cc65/github/cc65/testcode/lib/gamate/lcdtest.bin
2015-11-22 18:02:47 +00:00
test2: audiotest.bin
2015-11-29 00:14:59 +00:00
cd ~/Desktop/mame/winmess/ && wine mess.exe gamate -window -skip_gameinfo -cart ~/Desktop/cc65/github/cc65/testcode/lib/gamate/audiotest.bin
testc: ctest.bin
cd ~/Desktop/mame/winmess/ && wine mess.exe gamate -window -skip_gameinfo -cart ~/Desktop/cc65/github/cc65/testcode/lib/gamate/ctest.bin
2015-11-22 18:02:47 +00:00
clean:
2015-11-29 00:14:59 +00:00
rm -f lcdtest.o audiotest.o ctest.o
rm -f lcdtest.bin audiotest.bin ctest.bin