HateLace/makefile

17 lines
154 B
Makefile
Raw Normal View History

2024-04-16 06:14:45 +02:00
run:
./gradlew run
watch:
./gradlew run --continuous
build:
./gradlew build
clean:
./gradlew clean
test:
./gradlew test
.PHONY: run build clean