X-Git-Url: https://thelambdalab.xyz/gitweb/index.cgi?p=jars.git;a=blobdiff_plain;f=Makefile;h=e6aca145c755d6e30d5d9c02b46e9a79e4d3f254;hp=3a8ff850902bf5c977e81ceb1503549e65e2e142;hb=bebac0e359cb9ce7aa72aeb217dcc57301e26a51;hpb=b6d6c8632eadb09da87707a3e911d9d59c1779e4 diff --git a/Makefile b/Makefile index 3a8ff85..e6aca14 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -all : koth run-mars +all : koth run-mars debug-mars %.so : %.scm csc -s $< -J @@ -6,8 +6,20 @@ all : koth run-mars run-mars : run-mars.scm mars.so parser.so visualizer.so csc run-mars.scm +debug-mars : debug-mars.scm mars.so parser.so + csc debug-mars.scm + koth : koth.scm mars.so parser.so csc koth.scm clean : - rm koth run-mars *.so + rm -f koth run-mars *.so *.link *.import.scm *.o + +koth_linux: + csc_linux -c mars.scm -unit mars -J + csc_linux -c parser.scm -unit parser -J + csc_linux koth.scm -link mars,parser + +# csc_linux -c mars.scm -unit mars -uses matchable -J +# csc_linux -c parser.scm -unit parser -uses srfi-13 -J +# csc_linux -static -L -static koth.scm -link mars,parser,matchable,srfi-13