Makefile @ 8524e8a06be6 v1.0.0

Version 1.0.0
author Steve Losh <steve@stevelosh.com>
date Sun, 10 Feb 2019 18:15:17 -0500
parents abcdae1786b6
children 1efadc1bb827
.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