]> git.sur5r.net Git - cc65/blob - testcode/lib/gamate/Makefile
some more fiddling
[cc65] / testcode / lib / gamate / Makefile
1
2 all: audiotest.bin lcdtest.bin
3
4 audiotest.bin: audiotest.s
5 #       ../../../bin/ca65 -t gamate -o audiotest.o audiotest.s
6 #       ../../../bin/ld65 -t gamate -o audiotest.bin audiotest.o
7         ../../../bin/cl65 -t gamate -o audiotest.bin audiotest.s
8
9 lcdtest.bin: lcdtest.s
10 #       ../../../bin/ca65 -t gamate -o lcdtest.o lcdtest.s
11 #       ../../../bin/ld65 -t gamate -o lcdtest.bin lcdtest.o
12         ../../../bin/cl65 -l bla.lst -t gamate -o lcdtest.bin lcdtest.s
13
14 test1: lcdtest.bin
15         cd /home/groepaz/Desktop/mame/winmess/ && wine mess.exe gamate -window -skip_gameinfo -cart /home/groepaz/Desktop/cc65/github/cc65/testcode/lib/gamate/lcdtest.bin
16 test2: audiotest.bin
17         cd /home/groepaz/Desktop/mame/winmess/ && wine mess.exe gamate -window -skip_gameinfo -cart /home/groepaz/Desktop/cc65/github/cc65/testcode/lib/gamate/audiotest.bin
18
19 clean:
20         rm -f lcdtest.o audiotest.o
21         rm -f lcdtest.bin audiotest.bin