Update domain name to kpe.io
[umlisp-orf.git] / Makefile
1 .PHONY: all clean test test-acl test-sbcl
2
3 test-file:=`pwd`/run-tests.lisp
4 all:
5
6 distclean: clean
7
8 clean:
9         @find . -type f -name "*.fasl*" -or -name "*.ufsl" -or -name "*.x86f" \
10           -or -name "*.fas" -or -name "*.pfsl" -or -name "*.dfsl" \
11           -or -name "*~" -or -name ".#*" -or -name "#*#" | xargs rm -f
12
13 test: test-alisp
14
15 test-alisp:
16         alisp8 -q -L $(test-file)
17
18 test-mlisp:
19         mlisp -q -L $(test-file)
20
21 test-sbcl:
22         sbcl --noinform --disable-debugger --userinit $(test-file)
23
24 test-cmucl:
25         lisp -init $(test-file)
26
27 test-lw:
28         lw-console -init $(test-file)
29
30 test-scl: 
31         scl -init $(test-file)
32
33 test-clisp: 
34         clisp -norc -q -i $(test-file)