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