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