mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-09 10:42:36 -08:00
17 lines
320 B
Makefile
17 lines
320 B
Makefile
LISP = clisp
|
|
RM = rm -f
|
|
|
|
all : clean tests compare
|
|
|
|
clean : force
|
|
$(RM) *.erg
|
|
|
|
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 :
|
|
|