1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-21 02:27:10 +03:00
mal/kotlin/Makefile

35 lines
1013 B
Makefile
Raw Normal View History

2015-10-27 06:48:01 +03:00
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
2015-10-27 06:48:01 +03:00
SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
JARS = $(SOURCES_LISP:%.kt=%.jar)
2015-10-25 06:10:53 +03:00
all: $(JARS)
dist: mal.jar mal
mal.jar: stepA_mal.jar
cp $< $@
SHELL := bash
mal: mal.jar
cat <(echo -e '#!/bin/sh\nexec java -jar "$$0" "$$@"') mal.jar > $@
chmod +x mal
2015-10-25 06:10:53 +03:00
clean:
rm -vf $(JARS) mal.jar mal
2015-10-25 06:10:53 +03:00
2015-10-27 06:48:01 +03:00
$(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]"