From f29531239356c53b5f3232438e0152c6969da76d Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Tue, 24 Jun 2025 12:46:32 +0200 Subject: [PATCH] Help in makefile, fixing clean target --- Makefile | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b0f19e6..ffa233e 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,13 @@ +help: + @echo -e "Makefile for beretta\n" + @echo "Available targets:" + @echo " build - Build a server binary" + @echo " run - Run the project" + @echo " build-container - Build OCI container" + @echo " clean - Clean up build files" + @echo " help - Show this help message" + @echo -e "" + build: go build -o bin/beretta src/*.go @@ -8,4 +18,4 @@ build-container: podman build -t beretta . clean: - rm beretta + rm -rf bin