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

TESTS =

SOURCES = types.ps reader.ps printer.ps env.ps core.ps stepA_more.ps

.PHONY: stats tests $(TESTS)

stats: $(SOURCES)
	@wc $^

tests: $(TESTS)

$(TESTS):
	@echo "Running $@"; \
	gs -q -dNODISPLAY -- $@ || exit 1; \