diff --git a/makefile b/makefile new file mode 100644 index 0000000..19c9fc7 --- /dev/null +++ b/makefile @@ -0,0 +1,16 @@ +run: + ./gradlew run + +watch: + ./gradlew run --continuous + +build: + ./gradlew build + +clean: + ./gradlew clean + +test: + ./gradlew test + +.PHONY: run build clean