Files
adventofcode/2017/day-10/Makefile

9 lines
108 B
Makefile

.PHONY: all
all: solution.jar
java -jar $<
solution.jar: solution.kt
kotlinc $< -include-runtime -d $@