blob: 231e8aacfab9f0aa6ed0a9e0ebcef21b95034264 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
TESTS =
SOURCES = types.ps reader.ps step8_macros.ps
.PHONY: stats tests $(TESTS)
stats: $(SOURCES)
@wc $^
tests: $(TESTS)
$(TESTS):
@echo "Running $@"; \
gs -q -dNODISPLAY -- $@ || exit 1; \
|