diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2022-12-12 20:57:10 +0200 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2022-12-12 21:00:32 +0200 |
commit | b39dbcf3b51edfb1213bc345a5395c567042a0c0 (patch) | |
tree | ba4f43ad0e316025e19ce7285f0ad6a61538acca /Makefile | |
parent | 636bf4dbbc48b68c568085d7723b73d01862cab9 (diff) | |
download | mendeleev-b39dbcf3b51edfb1213bc345a5395c567042a0c0.tar.gz |
Add Lisp
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -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()' > $@ + |