1
0

Initial commit

This commit is contained in:
2020-10-08 22:24:32 +02:00
commit 865694be30
10 changed files with 498 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
version = 1.0-SNAPSHOT
jar = target/ktormgenerator-$(version).jar
native-output = target/ktormgenerator-$(version)-linux-static
.PHONY = all
all: $(native-output)
$(native-output): $(jar)
native-image --static --no-fallback --no-server -jar $< $@
$(jar):
mvn package