blob: 70dea08b9f8a6825d84cc0248aacad97456e0fd2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
TESTS = tests/types.mk tests/reader.mk tests/stepA_mal.mk
SOURCES_BASE = util.mk numbers.mk readline.mk gmsl.mk types.mk \
reader.mk printer.mk
SOURCES_LISP = env.mk core.mk stepA_mal.mk
SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
mal.mk: $(SOURCES)
echo "#!/usr/bin/make -f" > $@
cat $+ | grep -v "^include " >> $@
chmod +x $@
clean:
rm -f mal.mk
.PHONY: stats tests $(TESTS)
stats: $(SOURCES)
@wc $^
stats-lisp: $(SOURCES_LISP)
@wc $^
tests: $(TESTS)
$(TESTS):
@echo "Running $@"; \
make -f $@ || exit 1; \
|