Convert to loccount based stats calculation.
[jackhill/mal.git] / yorick / Makefile
CommitLineData
21986733
DM
1SOURCES_BASE = hash.i types.i reader.i printer.i
2SOURCES_LISP = env.i core.i stepA_mal.i
3SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
4
c4269f9b 5.PHONY: all dist clean
21986733
DM
6
7all: dist
8
9dist: mal
10
11mal: $(SOURCES)
12 echo "#!/usr/bin/yorick -batch" > $@
13 cat $+ | grep -v "^require," >> $@
14 chmod +x $@
15
16clean:
17 rm -f mal