aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Peter McGoron 2024-09-13 22:48:27 -0400
committerGravatar Peter McGoron 2024-09-13 22:48:27 -0400
commit45466ce4c445ce591a9a3ef31a63315728ed2166 (patch)
treecbbb250ec881d0a317b4d6901d8854ef22df3009 /Makefile
markov generate the bible
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..f2ba376
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,13 @@
+.PHONY: run
+
+run: kjv.txt markov.chicken.so markov.import.scm
+ csi toplevel.scm
+
+markov.chicken.scm: markov.impl.scm
+markov.chicken.so markov.import.scm: markov.chicken.scm
+ csc -s -J markov.chicken.scm -O3
+
+kjv.txt:
+ csi -b kjv2delimited.scm
+clean:
+ rm -f kjv.txt markov.chicken.so markov.import.scm