xl-project/makefile

18 lines
155 B
Makefile
Raw Normal View History

2024-05-11 12:39:04 +02:00
run:
./gradlew run
watch:
./gradlew run --continuous
build:
./gradlew build
clean:
./gradlew clean
test:
./gradlew test
.PHONY: run build clean