Skip to content

Commit 278329c

Browse files
Makefile: Make the golang build more verbose
1 parent 3835a02 commit 278329c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ debug: all
2828
# 64-bit Executable
2929
$(TARGET64): $(SRCS)
3030
@echo "Building 64-bit executable..."
31-
GOOS=windows GOARCH=amd64 $(GO) build -o $(TARGET64) $(SRCS)
31+
GOOS=windows GOARCH=amd64 $(GO) build -x -o $(TARGET64) $(SRCS)
3232

3333
# 32-bit Executable
3434
$(TARGET32): $(SRCS)
3535
@echo "Building 32-bit executable..."
36-
GOOS=windows GOARCH=386 $(GO) build -o $(TARGET32) $(SRCS)
36+
GOOS=windows GOARCH=386 $(GO) build -x -o $(TARGET32) $(SRCS)
3737

3838
# Distribution Target
3939
dist: zip targz

0 commit comments

Comments
 (0)