aboutsummaryrefslogtreecommitdiff
path: root/python/Makefile
blob: 3985d1456e2ae742a4a4e66172a3c839c6c356d2 (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 =


SOURCES = mal_readline.py mal_types.py reader.py printer.py \
          env.py core.py stepA_more.py

#all: mal.sh
#
#mal.sh: $(SOURCES)
#	cat $+ > $@
#	echo "#!/bin/bash" > $@
#	cat $+ | grep -v "^source " >> $@
#	chmod +x $@
#
#clean:
#	rm -f mal.sh

.PHONY: stats tests $(TESTS)

stats: $(SOURCES)
	@wc $^

tests: $(TESTS)

$(TESTS):
	@echo "Running $@"; \
	python $@ || exit 1; \