mirror of
https://github.com/kanaka/mal.git
synced 2024-11-11 00:52:44 +03:00
21 lines
518 B
Makefile
21 lines
518 B
Makefile
TESTS =
|
|
|
|
SOURCES_BASE = MalReadline.io MalTypes.io MalReader.io
|
|
SOURCES_LISP = Env.io MalCore.io stepA_mal.io
|
|
SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
|
|
|
|
.PHONY: stats tests $(TESTS)
|
|
|
|
stats: $(SOURCES)
|
|
@wc $^
|
|
@printf "%5s %5s %5s %s\n" `grep -E "^[[:space:]]*//|^[[:space:]]*$$" $^ | wc` "[comments/blanks]"
|
|
stats-lisp: $(SOURCES_LISP)
|
|
@wc $^
|
|
@printf "%5s %5s %5s %s\n" `grep -E "^[[:space:]]*//|^[[:space:]]*$$" $^ | wc` "[comments/blanks]"
|
|
|
|
tests: $(TESTS)
|
|
|
|
$(TESTS):
|
|
@echo "Running $@"; \
|
|
ruby $@ || exit 1; \
|