From bdcfd75108d20508245beb4381835b01b3fa7a73 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Fri, 26 Jul 2024 16:43:43 -0300 Subject: Makefile: Reorder CLI args to go(1) --- Makefile | 4 ++-- 1 file 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 -- cgit v1.2.3