summaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
authorGravatar John Cowan 2021-07-16 13:56:15 -0400
committerGravatar GitHub 2021-07-16 13:56:15 -0400
commitfd99f8fe0f30fdf4642d54e78ef17e1bda227a06 (patch)
treeb8f9d669ddc8f14ccff399884fd0fbba3659d438 /makefile
parentformatting (diff)
parentfix pop! in 126 implementation (diff)
Merge pull request #5 from arvyy/master
Fix pop! in 125 implementation, move testing to makefile, add support for more implementations
Diffstat (limited to 'makefile')
-rw-r--r--makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/makefile b/makefile
new file mode 100644
index 0000000..fc060e5
--- /dev/null
+++ b/makefile
@@ -0,0 +1,21 @@
+.PHONY: test-guile test-gauche test-kawa test-chibi test-chicken
+
+test-guile:
+ guile -L . --r7rs dictionaries-test.scm
+
+test-gauche:
+ gosh -I . dictionaries-test.scm
+
+test-kawa:
+ cp dictionaries.sld dictionaries.scm
+ kawa dictionaries-test.scm
+ rm dictionaries.scm
+
+test-chibi:
+ chibi-scheme dictionaries-test.scm
+
+test-chicken:
+ csc -R r7rs -X r7rs -sJ -o dictionaries.so dictionaries.sld
+ csi -I . -R r7rs -s dictionaries-test.scm
+ rm dictionaries.so
+ rm dictionaries.import.scm