1
1
mirror of https://github.com/kanaka/mal.git synced 2024-11-11 08:56:41 +03:00
mal/ps/Makefile
Joel Martin 3da90d3907 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.
2014-03-31 23:05:41 -05:00

16 lines
201 B
Makefile

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; \