frp/Makefile

47 lines
795 B
Makefile
Raw Normal View History

2016-01-27 20:24:36 +07:00
export PATH := $(GOPATH)/bin:$(PATH)
export GO15VENDOREXPERIMENT := 1
2016-01-27 20:24:36 +07:00
2016-08-11 23:32:33 +07:00
all: fmt build
2016-01-27 20:24:36 +07:00
2017-03-09 23:52:32 +07:00
build: frps frpc
2016-01-27 20:24:36 +07:00
2016-08-11 23:39:39 +07:00
# compile assets into binary file
2016-08-11 23:32:33 +07:00
assets:
go get -d github.com/rakyll/statik
@go install github.com/rakyll/statik
2017-03-09 01:03:47 +07:00
@rm -rf ./assets/statik
go generate ./assets/...
2016-02-03 17:46:24 +07:00
fmt:
2017-03-09 23:52:32 +07:00
go fmt ./...
2016-01-27 20:24:36 +07:00
frps:
2017-03-09 01:03:47 +07:00
go build -o bin/frps ./cmd/frps
@cp -rf ./assets/static ./bin
2016-01-27 20:24:36 +07:00
frpc:
2017-03-09 01:03:47 +07:00
go build -o bin/frpc ./cmd/frpc
2016-02-03 17:14:16 +07:00
2016-05-17 18:13:37 +07:00
test: gotest
gotest:
2017-03-09 23:52:32 +07:00
go test -v ./assets/...
go test -v ./client/...
go test -v ./cmd/...
go test -v ./models/...
go test -v ./server/...
go test -v ./utils/...
alltest: gotest
2016-05-17 18:17:04 +07:00
cd ./test && ./run_test.sh && cd -
2017-03-09 23:52:32 +07:00
go test -v ./tests/...
2016-05-17 18:17:04 +07:00
cd ./test && ./clean_test.sh && cd -
2016-05-17 18:13:37 +07:00
clean:
rm -f ./bin/frpc
rm -f ./bin/frps
2016-05-17 18:17:04 +07:00
cd ./test && ./clean_test.sh && cd -
save:
2017-03-09 23:52:32 +07:00
godep save ./...