mirror of
https://github.com/fatedier/frp.git
synced 2024-11-08 17:14:27 +01:00
16 lines
353 B
Makefile
16 lines
353 B
Makefile
export PATH := $(GOPATH)/bin:$(PATH)
|
|
export OLDGOPATH := $(GOPATH)
|
|
export GOPATH := $(shell pwd)/Godeps/_workspace:$(shell pwd):$(GOPATH)
|
|
export OS_TARGETS=linux windows
|
|
export ARCH_TARGETS=386 amd64
|
|
|
|
all: build
|
|
|
|
build: godep app
|
|
|
|
godep:
|
|
GOPATH=$(OLDGOPATH) go get github.com/mitchellh/gox
|
|
|
|
app:
|
|
gox -os "$(OS_TARGETS)" -arch="$(ARCH_TARGETS)" ./...
|