Initial commit
author |
Steve Losh <steve@stevelosh.com> |
date |
Wed, 21 Nov 2018 23:22:18 -0500 |
parents |
(none) |
children |
152830fa3f85 |
.PHONY: test test-sbcl test-ccl test-ecl test-abcl
heading_printer = $(shell which heading || echo 'true')
# Testing ---------------------------------------------------------------------
test: test-sbcl test-ccl test-ecl test-abcl
test-sbcl:
$(heading_printer) computer 'SBCL'
sbcl --load test/run.lisp
test-ccl:
$(heading_printer) slant 'CCL'
ccl --load test/run.lisp
test-ecl:
$(heading_printer) roman 'ECL'
ecl -load test/run.lisp
test-abcl:
$(heading_printer) broadway 'ABCL'
abcl --load test/run.lisp