Microcode/Makefile
Gabriel Tofvesson def8aa8e90 Add make rule
2019-04-10 00:03:17 +02:00

14 lines
266 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
clean:
rm -f weaver.jar
rm -f compiler.jar
rm -f microcompiler.jar