Add Makefile

This commit is contained in:
JeremyStar™ 2024-04-23 17:21:18 +02:00
parent bd49f00522
commit 80236e6130
Signed by: JeremyStarTM
GPG key ID: E366BAEF67E4704D

10
Makefile Normal file
View file

@ -0,0 +1,10 @@
.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