10 lines
272 B
Makefile
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
|