Files
access-manager-api/Makefile
T
alu ee59134778
tronnet/workflows: Static Analysis -- Golang / static-go (push) Failing after 38s
fix makefile phony targets
2026-08-03 18:25:35 +00:00

11 lines
284 B
Makefile

.PHONY: build clean
build: clean
@echo "======================== Building Binary ======================="
mkdir -p dist
CGO_ENABLED=0 go build -ldflags="-s -w" -v -o dist/ .
clean:
@echo "======================== Cleaning Project ======================"
go clean
rm -rf dist/*