Add -v to go build command in Makefile

This commit is contained in:
DarthSim
2025-09-17 17:05:26 +03:00
parent 6f52eca85e
commit 3c45a2a67a

View File

@@ -53,7 +53,7 @@ all: build
# make build -- -o output_name # make build -- -o output_name
.PHONY: build .PHONY: build
build: build:
@$(GOBUILD) -o $(BINARY) $(BUILD_ARGS) $(SRCDIR) @$(GOBUILD) -v -o $(BINARY) $(BUILD_ARGS) $(SRCDIR)
# Clean # Clean
.PHONY: clean .PHONY: clean