From 8b5aa0aa1fc31e0e485ada53ce1f54d73593e014 Mon Sep 17 00:00:00 2001 From: plugd Date: Fri, 8 May 2020 23:40:27 +0200 Subject: [PATCH] Added static compilation sequence to makefile. --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Makefile b/Makefile index 3a8ff85..33627ed 100644 --- a/Makefile +++ b/Makefile @@ -11,3 +11,13 @@ koth : koth.scm mars.so parser.so clean : rm koth run-mars *.so + +# 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 -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 -- 2.20.1