1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
include $(top_srcdir)/common.mk
MAXIMA = @POSIX_SHELL@ $(top_srcdir)/maxima-local
if CLISP
check: check-clisp
check-clisp:
echo "Running test suite with clisp..."; \
$(MAXIMA) --lisp=clisp --batch-string="run_testsuite();" < /dev/null
endif
if CMUCL
check: check-cmucl
check-cmucl:
echo "Running test suite with cmucl..."; \
$(MAXIMA) --lisp=cmucl --batch-string="run_testsuite();" < /dev/null
endif
if SBCL
check: check-sbcl
check-sbcl:
echo "Running test suite with sbcl..."; \
$(MAXIMA) --lisp=sbcl --batch-string="run_testsuite();" < /dev/null
endif
if GCL
check: check-gcl
check-gcl:
echo "Running test suite with gcl..."; \
$(MAXIMA) --lisp=gcl --batch-string="run_testsuite();" < /dev/null
endif
if ACL6
check: check-acl6
check-acl6:
echo "Running test suite with acl6..."; \
$(MAXIMA) --lisp=acl6 --batch-string="run_testsuite();" < /dev/null
endif
if OPENMCL
check: check-openmcl
check-openmcl:
echo "Running test suite with openmcl..."; \
$(MAXIMA) --lisp=openmcl --batch-string="run_testsuite();" < /dev/null
endif
genericdir = $(insttestsdir)
genericdirDATA = rexamples.mac \
rtest10.mac \
rtest11.mac \
rtest12.mac \
rtest13.mac \
rtest13s.mac \
rtest14.mac \
rtest15.mac \
rtest1a.mac \
rtest1.mac \
rtest2.mac \
rtest3.mac \
rtest4.mac \
rtest5.mac \
rtest6a.mac \
rtest6b.mac \
rtest6.mac \
rtest7.mac \
rtest8.mac \
rtest9a.mac \
rtest9.mac \
rtestode.mac \
rtestode_zp.mac \
rtestflatten.mac \
testsuite.lisp
EXTRA_DIST = $(genericdirDATA)
|