home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Misc / CLISP-1.LHA / CLISP960530-sr.lha / tests / Makefile < prev    next >
Encoding:
Makefile  |  1996-04-15  |  275 b   |  14 lines

  1. LISP = clisp
  2.  
  3. all : tests compare
  4.  
  5. tests : force
  6.     $(LISP) -i tests.lsp -x '(run-all-tests)'
  7.  
  8. compare : force
  9.     (echo *.erg | grep '\*') >/dev/null || (echo "Test failed." ; echo "To see which tests failed, type" ; echo "    cat *.erg" ; exit 1)
  10.     echo "Test passed."
  11.  
  12. force :
  13.  
  14.