r9504: Automated commit for Debian build of umlisp-orf upstream-version-3.3.0
authorKevin M. Rosenberg <kevin@rosenberg.net>
Fri, 28 May 2004 17:37:43 +0000 (17:37 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Fri, 28 May 2004 17:37:43 +0000 (17:37 +0000)
Makefile [new file with mode: 0644]

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..f73a6f3
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,34 @@
+.PHONY: all clean test test-acl test-sbcl
+
+test-file:=`pwd`/run-tests.lisp
+all:
+
+distcliean: clean
+
+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)