X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=Makefile;fp=Makefile;h=dfa7a11eea67383475d44e3435f41e2975691576;hb=2104b47cd6f5a66a0ca7bd240ae928e986a4a8c5;hp=0000000000000000000000000000000000000000;hpb=1dcc7087f7e716725abd3e0decc8e33d6308ae1a;p=hyperobject.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)