Makefile @ 3f9040eb223f

Initial commit
author Steve Losh <steve@stevelosh.com>
date Sun, 27 May 2018 16:00:53 -0400
parents (none)
children abcdae1786b6
.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