X-Git-Url: https://thelambdalab.xyz/gitweb/index.cgi?p=jars.git;a=blobdiff_plain;f=Makefile;fp=Makefile;h=e6aca145c755d6e30d5d9c02b46e9a79e4d3f254;hp=d0bc8af7178a6d1fe64af74990e12f9ad436270e;hb=bebac0e359cb9ce7aa72aeb217dcc57301e26a51;hpb=865c1d7803580802c1f6048be60f7358e87b50e4 diff --git a/Makefile b/Makefile index d0bc8af..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,17 +6,19 @@ 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 -f koth run-mars *.so *.link *.import.scm *.o -# Cross-compile static executable koth_linux: - csc_linux -static -c mars.scm -unit mars -J - csc_linux -static -c parser.scm -unit parser -J - csc_linux -static -L -static koth.scm -link mars,parser + 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