mirror of https://github.com/fatedier/frp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
398 B
21 lines
398 B
export PATH := $(GOPATH)/bin:$(PATH) |
|
export NEW_GOPATH := $(shell pwd) |
|
|
|
all: build |
|
|
|
build: godep fmt frps frpc |
|
|
|
godep: |
|
@go get github.com/tools/godep |
|
|
|
fmt: |
|
GOPATH=$(NEW_GOPATH) godep go fmt ./... |
|
|
|
frps: |
|
GOPATH=$(NEW_GOPATH) godep go build -o bin/frps ./src/frp/cmd/frps |
|
|
|
frpc: |
|
GOPATH=$(NEW_GOPATH) godep go build -o bin/frpc ./src/frp/cmd/frpc |
|
|
|
test: |
|
@GOPATH=$(NEW_GOPATH) godep go test ./...
|
|
|