1
0
mirror of https://github.com/fatedier/frp.git synced 2025-08-03 12:24:43 +00:00
Files
frp/Makefile
2016-02-03 18:14:16 +08:00

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 ./...