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-30 18:16:28 +00:00
|
|
|
nachtm.bin: nachtm.c
|
|
|
|
../../../bin/cl65 -Os -l nachtm.lst -t gamate -o nachtm.bin nachtm.c
|
|
|
|
gamate-fixcart nachtm.bin
|
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-30 18:16:28 +00:00
|
|
|
testn: nachtm.bin
|
|
|
|
cd ~/Desktop/mame/winmess/ && wine mess.exe gamate -window -skip_gameinfo -cart ~/Desktop/cc65/github/cc65/testcode/lib/gamate/nachtm.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
|
2015-11-30 18:16:28 +00:00
|
|
|
rm -f lcdtest.bin audiotest.bin ctest.bin nachtm.bin
|