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
letions'>-1/+15 2021-07-26new exampleGravatar John Cowan 1-1/+4 2021-07-26updatesGravatar John Cowan 1-2/+4 2021-07-26dtd always first argumentGravatar John Cowan 1-9/+9 2021-07-26DTO to DTDGravatar John Cowan 1-55/+52 2021-07-26typoGravatar John Cowan 1-1/+1 2021-07-26switching to explicit dtosGravatar John Cowan 1-88/+102 2021-07-26errorsGravatar John Cowan 1-1/+4 2021-07-26more MN-W reviewGravatar John Cowan 1-5/+5 2021-07-26update preview linkGravatar John Cowan 1-1/+1 2021-07-26MN-W reviewGravatar John Cowan 1-6/+6 2021-07-26paired mutatorsGravatar John Cowan 1-43/+68 2021-07-25exceptionsGravatar John Cowan 1-1/+15 2021-07-25new exampleGravatar John Cowan 1-1/+4 2021-07-25updatesGravatar John Cowan 1-2/+4 2021-07-24dtd always first argumentGravatar John Cowan 1-9/+9 2021-07-23DTO to DTDGravatar John Cowan 1-55/+52 2021-07-22typoGravatar John Cowan 1-1/+1 2021-07-22switching to explicit dtosGravatar John Cowan 1-88/+102 2021-07-22errorsGravatar John Cowan 1-1/+4 2021-07-22more MN-W reviewGravatar John Cowan 1-5/+5 2021-07-20update preview linkGravatar John Cowan 1-1/+1 2021-07-20MN-W reviewGravatar John Cowan 1-6/+6 2021-07-18Fix typo.Gravatar Arthur A. Gleckler 2-4/+4 2021-07-18Add <p> around abstract.Gravatar Arthur A. Gleckler 1-2/+2 2021-07-18Publish first draft.draft-1Gravatar Arthur A. Gleckler 3-0/+114 2021-07-18Ignore trailing whitespace.Gravatar Arthur A. Gleckler 11-129/+129 2021-07-18Ignore "Dictionaries.log".Gravatar Arthur A. Gleckler 1-1/+2 2021-07-18Fix errors reported by W3C HTML Validator.Gravatar Arthur A. Gleckler 1-27/+27 2021-07-18Eliminate unnecessary redirect by using TLS/SSL.Gravatar Arthur A. Gleckler 1-1/+1