- drop clisp - Makefile is now compatible with GNU Make - cl-yag - Common Lisp … | |
git clone git://bitreich.org/cl-yag/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws… | |
Log | |
Files | |
Refs | |
Tags | |
README | |
LICENSE | |
--- | |
commit 8f68de9add9b35be4694980db5826a91e286cf7b | |
parent 28c93e93f76c5274805158f8b513493f6aa39d04 | |
Author: Solene Rapenne <[email protected]> | |
Date: Tue, 28 Nov 2017 08:15:16 +0100 | |
- drop clisp - Makefile is now compatible with GNU Make | |
Diffstat: | |
M Makefile | 10 +--------- | |
1 file changed, 1 insertion(+), 9 deletions(-) | |
--- | |
diff --git a/Makefile b/Makefile | |
@@ -5,18 +5,10 @@ HTMLDIR= temp/data | |
ARTICLES!= ls data/*.md | |
HTML= $(ARTICLES:.md=.html) | |
-.if "${LISP}" == "sbcl" | |
-PARAM=--dynamic-space-size 90 --script | |
-.elif "${LISP}" == "clisp" | |
-PARAM= | |
-.elif "${LISP}" == "ecl" | |
-PARAM=-shell | |
-.endif | |
- | |
all: clean dirs html | |
html: $(HTML) css | |
- $(LISP) $(PARAM) generator.lisp | |
+ $(LISP) --load generator.lisp | |
rm -fr "temp" | |
dirs: |