Makefile for convenience

This commit is contained in:
Imbus 2024-04-16 06:14:45 +02:00
parent a0c7fa215a
commit a10d0ecbb9

16
makefile Normal file
View file

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