X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;ds=sidebyside;f=Makefile;fp=Makefile;h=dfa7a11eea67383475d44e3435f41e2975691576;hb=3199369942d2e5ab4f5b060c2c6b655caf505944;hp=0000000000000000000000000000000000000000;hpb=7e088e3bca94e4cba5a00f3c3734db4ea57f4e2f;p=umlisp.git diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..dfa7a11 --- /dev/null +++ b/Makefile @@ -0,0 +1,32 @@ +.PHONY: all clean test test-acl test-sbcl + +test-file:=`pwd`/run-tests.lisp +all: + +clean: + @find . -type f -name "*.fasl*" -or -name "*.ufsl" -or -name "*.x86f" \ + -or -name "*.fas" -or -name "*.pfsl" -or -name "*.dfsl" \ + -or -name "*~" -or -name ".#*" -or -name "#*#" | xargs rm -f + +test: test-alisp + +test-alisp: + alisp8 -q -L $(test-file) + +test-mlisp: + mlisp -q -L $(test-file) + +test-sbcl: + sbcl --noinform --disable-debugger --userinit $(test-file) + +test-cmucl: + lisp -init $(test-file) + +test-lw: + lw-console -init $(test-file) + +test-scl: + scl -init $(test-file) + +test-clisp: + clisp -norc -q -i $(test-file)