| Let choose which LISP implementation to use for test, ecl by default - clic - C… | |
| git clone git://bitreich.org/clic/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65… | |
| Log | |
| Files | |
| Refs | |
| Tags | |
| README | |
| LICENSE | |
| --- | |
| commit cfb04c343f6fc8990d6d3f6d462b0c98353dbc3e | |
| parent 3294e0ddc70f60b1ce763c5880e0e8fe8fee1520 | |
| Author: Solene Rapenne <[email protected]> | |
| Date: Fri, 3 Nov 2017 17:05:27 +0000 | |
| Let choose which LISP implementation to use for test, ecl by default | |
| Diffstat: | |
| M Makefile | 8 +++++++- | |
| 1 file changed, 7 insertions(+), 1 deletion(-) | |
| --- | |
| diff --git a/Makefile b/Makefile | |
| @@ -2,6 +2,7 @@ | |
| # See the LICENSE file for copyright and license details. | |
| NAME = clic | |
| +LISP ?= ecl | |
| PREFIX ?= /usr | |
| BINDIR ?= ${PREFIX}/bin | |
| MANDIR ?= ${PREFIX}/share/man/man1 | |
| @@ -11,6 +12,9 @@ all: bin | |
| bin: | |
| ecl --load make-binary.lisp | |
| +sbcl-bin: | |
| + sbcl --load make-binary.lisp | |
| + | |
| install: all | |
| @echo installing executable to ${DESTDIR}${PREFIX}/bin | |
| @mkdir -p ${DESTDIR}${BINDIR} | |
| @@ -24,5 +28,7 @@ uninstall: | |
| clean: | |
| rm -f clic clic.o clic.eclh clic.cxx | |
| -.PHONY: all install uninstall clean | |
| +test: | |
| + ${LISP} --load clic.lisp --load test.lisp | |
| +.PHONY: all install uninstall clean |