1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-20 18:18:51 +03:00
mal/kotlin/Makefile
2015-10-26 22:48:01 -05:00

25 lines
837 B
Makefile

SOURCES_BASE = reader.kt printer.kt types.kt env.kt core.kt readline.kt
SOURCES_LISP = step0_repl.kt step1_read_print.kt step2_eval.kt step3_env.kt step4_if_fn_do.kt \
step5_tco.kt step6_file.kt step7_quote.kt step8_macros.kt step9_try.kt stepA_mal.kt
SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
JARS = $(SOURCES_LISP:%.kt=%.jar)
all: $(JARS)
clean:
rm -vf $(JARS)
$(JARS): %.jar: src/mal/%.kt $(SOURCES_BASE:%.kt=src/mal/%.kt)
kotlinc src/mal/$(@:%.jar=%.kt) $(SOURCES_BASE:%.kt=src/mal/%.kt) -include-runtime -d $@
.PHONY: stats
stats: $(SOURCES:%.kt=src/mal/%.kt)
@wc $^
@printf "%5s %5s %5s %s\n" `grep -E "^[[:space:]]*//|^[[:space:]]*$$" $^ | wc` "[comments/blanks]"
stats-lisp: $(SOURCES_LISP:%.kt=src/mal/%.kt)
@wc $^
@printf "%5s %5s %5s %s\n" `grep -E "^[[:space:]]*//|^[[:space:]]*$$" $^ | wc` "[comments/blanks]"