kopia lustrzana https://github.com/cyoung/stratux
Allow overriding the value of GOOS, GOARCH, and GOARM from the shell prior to executing gnu make.
rodzic
1437a07f7a
commit
438c047442
6
Makefile
6
Makefile
|
|
@ -1,4 +1,8 @@
|
|||
GOOS ?= linux
|
||||
GOARCH ?= arm
|
||||
GOARM ?= 6
|
||||
|
||||
all:
|
||||
GOOS=linux GOARCH=arm GOARM=6 go build gen_gdl90.go traffic.go ry835ai.go network.go
|
||||
GOOS=$(GOOS) GOARCH=$(GOARCH) GOARM=$(GOARM) go build gen_gdl90.go traffic.go ry835ai.go network.go
|
||||
clean:
|
||||
rm -f gen_gdl90
|
||||
|
|
|
|||
Ładowanie…
Reference in New Issue