Skip to content

Commit

Permalink
Fix make cross
Browse files Browse the repository at this point in the history
  • Loading branch information
hirose31 committed Feb 24, 2023
1 parent cafe129 commit 644cc23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ endif

.PHONY: cross
cross: devel-deps ## build for cross platforms
goxz -arch amd64,arm64 -os linux,darwin -n $(BIN) -pv=v$(VERSION) -build-ldflags=$(BUILD_LDFLAGS) -trimpath .
goxz -arch amd64 -os windows -n $(BIN) -pv=v$(VERSION) -build-ldflags=$(BUILD_LDFLAGS) -trimpath .
goxz -arch amd64,arm64 -os linux,darwin -n $(BIN) -pv=v$(VERSION) -build-ldflags=$(BUILD_LDFLAGS) -trimpath $(MAIN)
goxz -arch amd64 -os windows -n $(BIN) -pv=v$(VERSION) -build-ldflags=$(BUILD_LDFLAGS) -trimpath $(MAIN)

.PHONY: upload
upload: devel-deps ## upload
Expand Down

0 comments on commit 644cc23

Please sign in to comment.