aboutsummaryrefslogtreecommitdiff
path: root/ps/Makefile
diff options
context:
space:
mode:
authorJoel Martin <github@martintribe.org>2014-03-31 23:05:41 -0500
committerJoel Martin <github@martintribe.org>2014-03-31 23:05:41 -0500
commit3da90d39071ddd9a70c6adaf69fbc8f8b99346dd (patch)
treef6f0567ae30fbd54dda6d43e8336f56e35ed828f /ps/Makefile
parent8e7e339db8060f95d27694b93b8d4d648d13c083 (diff)
downloadmal-3da90d39071ddd9a70c6adaf69fbc8f8b99346dd.tar.gz
mal-3da90d39071ddd9a70c6adaf69fbc8f8b99346dd.zip
PS: add step8_macros.
Use dicts rather than array block for user defined mal function type. Add fload function to setup call from a mal_function dict.
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; \