mirror of
https://github.com/kanaka/mal.git
synced 2024-11-11 00:52:44 +03:00
26 lines
574 B
Makefile
26 lines
574 B
Makefile
SOURCES_BASE = lib/mal/types.ex lib/mal/reader.ex lib/mal/printer.ex
|
|
SOURCES_LISP = lib/mal/env.ex lib/mal/core.ex lib/mix/tasks/stepA_mal.ex
|
|
SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
|
|
|
|
all:
|
|
mix compile
|
|
|
|
dist: mal
|
|
|
|
mal: $(SOURCES)
|
|
mix escript.build
|
|
|
|
clean:
|
|
mix clean
|
|
rm -f mal
|
|
|
|
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]"
|
|
|
|
.PHONY: clean stats stats-lisp
|