mirror of
https://github.com/kanaka/mal.git
synced 2024-11-11 00:52:44 +03:00
90f618cbe7
Also, add missed postscript interop tests.
20 lines
322 B
Makefile
20 lines
322 B
Makefile
|
|
TESTS =
|
|
|
|
SOURCES_BASE = types.ps reader.ps printer.ps
|
|
SOURCES_LISP = env.ps core.ps stepA_mal.ps
|
|
SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
|
|
|
|
.PHONY: stats tests $(TESTS)
|
|
|
|
stats: $(SOURCES)
|
|
@wc $^
|
|
stats-lisp: $(SOURCES_LISP)
|
|
@wc $^
|
|
|
|
tests: $(TESTS)
|
|
|
|
$(TESTS):
|
|
@echo "Running $@"; \
|
|
gs -q -dNODISPLAY -- $@ || exit 1; \
|