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

14 lines
449 B
Makefile
Raw Normal View History

2015-10-25 06:10:53 +03:00
SOURCES = reader.kt printer.kt types.kt env.kt core.kt readline.kt
2015-10-25 08:22:15 +03:00
SRCS = 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-25 06:10:53 +03:00
JARS = $(SRCS:%.kt=%.jar)
all: $(JARS)
clean:
rm -vf $(JARS)
$(JARS): %.jar: src/mal/%.kt $(SOURCES:%.kt=src/mal/%.kt)
kotlinc src/mal/$(@:%.jar=%.kt) $(SOURCES:%.kt=src/mal/%.kt) -include-runtime -d $@