Files
adventofcode/2017/day-10/Makefile
2017-12-10 17:43:43 +01:00

9 lines
108 B
Makefile

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