mirror of
https://github.com/fatedier/frp.git
synced 2025-01-05 13:39:18 +01:00
19 lines
249 B
Makefile
19 lines
249 B
Makefile
export PATH := $(GOPATH)/bin:$(PATH)
|
|
|
|
all: build
|
|
|
|
build: godep frps frpc
|
|
|
|
godep:
|
|
@go get github.com/tools/godep
|
|
godep restore
|
|
|
|
frps:
|
|
godep go build -o bin/frps ./cmd/frps
|
|
|
|
frpc:
|
|
godep go build -o bin/frpc ./cmd/frpc
|
|
|
|
test:
|
|
@godep go test ./...
|