home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-04-15 | 275 b | 14 lines |
- LISP = clisp
-
- all : tests compare
-
- tests : force
- $(LISP) -i tests.lsp -x '(run-all-tests)'
-
- compare : force
- (echo *.erg | grep '\*') >/dev/null || (echo "Test failed." ; echo "To see which tests failed, type" ; echo " cat *.erg" ; exit 1)
- echo "Test passed."
-
- force :
-
-