Skip to content
This repository was archived by the owner on Aug 29, 2023. It is now read-only.

Commit bc497b9

Browse files
authored
unify makefile syntax (#177)
1 parent 6695e6b commit bc497b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ test:
7474
build: $(DIST)/$(EXECUTABLE)
7575

7676
$(DIST)/$(EXECUTABLE): $(SOURCES)
77-
GOOS=${TARGETOS} GOARCH=${TARGETARCH} GOARM=$(GOARM) $(GO) build -v -tags '$(TAGS)' -ldflags '-extldflags "-static" $(LDFLAGS)' -o $@ ./cmd/$(EXECUTABLE)
77+
GOOS=$(TARGETOS) GOARCH=$(TARGETARCH) GOARM=$(GOARM) $(GO) build -v -tags '$(TAGS)' -ldflags '-extldflags "-static" $(LDFLAGS)' -o $@ ./cmd/$(EXECUTABLE)
7878

7979
$(DIST_DIRS):
8080
mkdir -p $(DIST_DIRS)

0 commit comments

Comments
 (0)