mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-25 21:00:31 +01:00
9 lines
108 B
Makefile
9 lines
108 B
Makefile
.PHONY: all
|
|
|
|
all: solution.jar
|
|
java -jar $<
|
|
|
|
solution.jar: solution.kt
|
|
kotlinc $< -include-runtime -d $@
|
|
|