Skip to content

Commit 57df169

Browse files
committed
Makefile: Reduce default architectures
1 parent d97b3a6 commit 57df169

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ GO= go
22
GOX= gox
33

44
GO_PACKAGE= github.com/fumiyas/qrc/cmd/qrc
5-
CROSS_TARGETS= linux darwin windows
5+
CROSS_TARGETS= linux/amd64 linux/386 darwin/amd64 windows/386
66

77
default: build
88

@@ -13,5 +13,5 @@ build:
1313
$(GO) build cmd/qrc/qrc.go
1414

1515
cross:
16-
$(GOX) -os="$(CROSS_TARGETS)" $(GO_PACKAGE)
16+
$(GOX) -osarch="$(CROSS_TARGETS)" $(GO_PACKAGE)
1717

0 commit comments

Comments
 (0)