Added debugger.
[jars.git] / Makefile
1 all : koth run-mars debug-mars
2
3 %.so : %.scm
4         csc -s $< -J
5
6 run-mars : run-mars.scm mars.so parser.so visualizer.so
7         csc run-mars.scm
8
9 debug-mars : debug-mars.scm mars.so parser.so
10         csc debug-mars.scm
11
12 koth : koth.scm mars.so parser.so
13         csc koth.scm
14
15 clean :
16         rm -f koth run-mars *.so *.link *.import.scm *.o
17
18 koth_linux:
19         csc_linux -c mars.scm -unit mars -J
20         csc_linux -c parser.scm -unit parser -J
21         csc_linux koth.scm -link mars,parser
22
23 # csc_linux -c mars.scm -unit mars -uses matchable -J
24 # csc_linux -c parser.scm -unit parser -uses srfi-13 -J
25 # csc_linux -static -L -static koth.scm -link mars,parser,matchable,srfi-13