aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
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