aboutsummaryrefslogtreecommitdiff
path: root/python/Makefile
blob: 1c8e467970c988d7c78c7c16788e8e590684cd73 (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

TESTS =


SOURCES = mal_types.py mal_readline.py reader.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; \