mirror of
https://github.com/kanaka/mal.git
synced 2024-11-11 08:56:41 +03:00
3da90d3907
Use dicts rather than array block for user defined mal function type. Add fload function to setup call from a mal_function dict.
16 lines
201 B
Makefile
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; \
|