PSSP/Makefile
2024-04-23 17:21:18 +02:00

10 lines
272 B
Makefile

.PHONY: dist help build clean
dist: help
help:
@echo "make help -> Displays all available tasks"
@echo " build -> Compiles the source code into a usable jar file"
@echo " clean -> Cleans the repository"
build:
./gradlew shadowJar
clean:
rm -rf .gradle build