aboutsummaryrefslogtreecommitdiff
path: root/ps/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'ps/Makefile')
-rw-r--r--ps/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/ps/Makefile b/ps/Makefile
new file mode 100644
index 0000000..231e8aa
--- /dev/null
+++ b/ps/Makefile
@@ -0,0 +1,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; \