aboutsummaryrefslogtreecommitdiff
path: root/php/Makefile
blob: e7ea51d25cb470f2156e7456cfde94bd1dd93337 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

TESTS =

SOURCES = readline.php types.php reader.php printer.php \
	  env.php core.php stepA_more.php

.PHONY: stats tests $(TESTS)

stats: $(SOURCES)
	@wc $^

tests: $(TESTS)

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