aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2022-03-17 15:14:53 +0000
committerYann Herklotz <git@yannherklotz.com>2022-03-17 15:15:00 +0000
commit921c8ace00ad57440467d495bdb19407a377193f (patch)
treed211675c17f2debd7c1ad86cada5e88f6cc2a4da /scripts
parentadc981f648a5f513b7501715e86dcb1ec7b4f986 (diff)
downloadvericert-921c8ace00ad57440467d495bdb19407a377193f.tar.gz
vericert-921c8ace00ad57440467d495bdb19407a377193f.zip
Add Makefile in scripts directory
Diffstat (limited to 'scripts')
-rw-r--r--scripts/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/Makefile b/scripts/Makefile
new file mode 100644
index 0000000..bf51ce7
--- /dev/null
+++ b/scripts/Makefile
@@ -0,0 +1,9 @@
+all: synthesis
+
+synthesis: synthesis-results.scm
+ chicken-csc -static -o $@ $<
+
+install: synthesis
+ install -s $< ~/.local/bin
+
+.PHONY: all install