diff options
| author | 2021-07-16 18:43:46 +0300 | |
|---|---|---|
| committer | 2021-07-16 18:43:46 +0300 | |
| commit | daba579d990e5320ab731ba0a3837d8f3c2d58bf (patch) | |
| tree | c0da4622aa060c08546fab2fb4c8c056646a959a /makefile | |
| parent | formatting (diff) | |
add makefile for testing; test with more implementations; move library to .sld; fix srfi-125 pop!
Diffstat (limited to 'makefile')
| -rw-r--r-- | makefile | 21 |
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 |
