aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2022-12-12 20:57:10 +0200
committerIgor Pashev <pashev.igor@gmail.com>2022-12-12 21:00:32 +0200
commitb39dbcf3b51edfb1213bc345a5395c567042a0c0 (patch)
treeba4f43ad0e316025e19ce7285f0ad6a61538acca /Makefile
parent636bf4dbbc48b68c568085d7723b73d01862cab9 (diff)
downloadmendeleev-b39dbcf3b51edfb1213bc345a5395c567042a0c0.tar.gz
Add Lisp
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 10 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 9a3f9cd..51fcc76 100644
--- a/Makefile
+++ b/Makefile
@@ -6,10 +6,17 @@ BINARIES := \
mendeleev-py \
mendeleev-tree-c \
-SCRIPTS := \
+LISP := \
+ clisp:mendeleev.lisp \
+ ecl:--shell:mendeleev.lisp \
+ sbcl:--script:mendeleev.lisp \
+
+PYTHON := \
+ pypy:mendeleev.py \
python2:mendeleev.py \
python3:mendeleev.py \
- pypy:mendeleev.py
+
+SCRIPTS := $(LISP) $(PYTHON)
.PHONY: build
build: $(BINARIES)
@@ -116,3 +123,4 @@ prof-mendeleev-py.dat: mendeleev.py
prof-mendeleev-py.txt: prof-mendeleev-py.dat
python3 -c 'import pstats; pstats.Stats("$<").sort_stats("tottime").print_stats()' > $@
+