Helper makefile

This commit is contained in:
Imbus 2024-05-11 12:39:04 +02:00
parent d471511258
commit 8d2773047e

17
makefile Normal file
View file

@ -0,0 +1,17 @@
run:
./gradlew run
watch:
./gradlew run --continuous
build:
./gradlew build
clean:
./gradlew clean
test:
./gradlew test
.PHONY: run build clean