Browse Source

Add -v to go build command in Makefile

DarthSim 3 weeks ago
parent
commit
3c45a2a67a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Makefile

+ 1 - 1
Makefile

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