We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3835a02 commit 278329cCopy full SHA for 278329c
Makefile
@@ -28,12 +28,12 @@ debug: all
28
# 64-bit Executable
29
$(TARGET64): $(SRCS)
30
@echo "Building 64-bit executable..."
31
- GOOS=windows GOARCH=amd64 $(GO) build -o $(TARGET64) $(SRCS)
+ GOOS=windows GOARCH=amd64 $(GO) build -x -o $(TARGET64) $(SRCS)
32
33
# 32-bit Executable
34
$(TARGET32): $(SRCS)
35
@echo "Building 32-bit executable..."
36
- GOOS=windows GOARCH=386 $(GO) build -o $(TARGET32) $(SRCS)
+ GOOS=windows GOARCH=386 $(GO) build -x -o $(TARGET32) $(SRCS)
37
38
# Distribution Target
39
dist: zip targz
0 commit comments