summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-07-26 16:43:43 -0300
committerEuAndreh <eu@euandre.org>2024-07-26 16:43:43 -0300
commitbdcfd75108d20508245beb4381835b01b3fa7a73 (patch)
tree36c7c8ab361ab0836de6a549ccff30fc3d7a9f36
parentgo.mod: Include "gobang" dependency (diff)
downloadpapod-bdcfd75108d20508245beb4381835b01b3fa7a73.tar.gz
papod-bdcfd75108d20508245beb4381835b01b3fa7a73.tar.xz
Makefile: Reorder CLI args to go(1)
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 8801328..ba9e48f 100644
--- a/Makefile
+++ b/Makefile
@@ -58,10 +58,10 @@ all: $(derived-assets)
$(NAME).bin: src/lib.go src/cmd/main.go Makefile
- env CGO_ENABLED=1 go build -v $(GOFLAGS) -o $@ src/cmd/main.go
+ env CGO_ENABLED=1 go build $(GOFLAGS) -v -o $@ src/cmd/main.go
tests/lib_test.bin: src/lib.go tests/lib_test.go Makefile
- env CGO_ENABLED=1 go test -v $(GOFLAGS) -o $@ -c $*.go
+ env CGO_ENABLED=1 go test $(GOFLAGS) -v -o $@ -c $*.go