Microcode/Makefile
2019-04-07 13:54:18 +02:00

9 lines
195 B
Makefile

KCOMPILER=kotlinc
KEXEC=kotlin
TEMPLATE=weaver.jar compiler.jar microcompiler.jar
$(TEMPLATE): %: $(%:.jar=.kt)
$(KCOMPILER) $(@:.jar=.kt) -d $@
all: weaver.jar compiler.jar microcompiler.jar