aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2022-03-22 16:42:04 +0000
committerYann Herklotz <git@yannherklotz.com>2022-03-22 16:42:04 +0000
commit0580932cb0da7fac6b8aa5f5b98beb824a3fff50 (patch)
treedee9ac61de199e037ca58dad248a486fc0ccb848 /scripts
parent8681d039abc5b2beac21ee17d7d944b00552aef6 (diff)
downloadvericert-0580932cb0da7fac6b8aa5f5b98beb824a3fff50.tar.gz
vericert-0580932cb0da7fac6b8aa5f5b98beb824a3fff50.zip
Fix Makefiles in build and for benchmarks
Diffstat (limited to 'scripts')
-rw-r--r--scripts/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/scripts/Makefile b/scripts/Makefile
index 0b5ff33..3892723 100644
--- a/scripts/Makefile
+++ b/scripts/Makefile
@@ -1,9 +1,12 @@
PREFIX ?= ..
-all: synthesis
+all: synthesis-results
%: %.scm
- chicken-csc -static -o $@ $<
+ $(eval TMP := $(shell mktemp))
+ echo "(main (command-line-arguments))" >$(TMP)
+ chicken-csc -static -epilogue $(TMP) -output-file $@ $<
+ rm $(TMP)
%.1: %.org
emacs --batch --file $< --load ../docs/res/publish.el --funcall org-man-export-to-man