frp/Makefile

56 lines
979 B
Makefile
Raw Normal View History

2016-01-27 21:24:36 +08:00
export PATH := $(GOPATH)/bin:$(PATH)
export GO15VENDOREXPERIMENT := 1
2016-01-27 21:24:36 +08:00
2016-08-12 00:32:33 +08:00
all: fmt build
2016-01-27 21:24:36 +08:00
2017-03-10 00:52:32 +08:00
build: frps frpc
2016-01-27 21:24:36 +08:00
2016-08-12 00:39:39 +08:00
# compile assets into binary file
2017-03-27 02:21:37 +08:00
file:
rm -rf ./assets/static/*
cp -rf ./web/frps/dist/* ./assets/static
go get -d github.com/rakyll/statik
go install github.com/rakyll/statik
rm -rf ./assets/statik
2017-03-09 02:03:47 +08:00
go generate ./assets/...
2016-02-03 18:46:24 +08:00
fmt:
2017-06-04 20:47:24 +08:00
go fmt ./assets/...
go fmt ./client/...
go fmt ./cmd/...
go fmt ./models/...
go fmt ./server/...
go fmt ./utils/...
2017-03-10 00:52:32 +08:00
2016-01-27 21:24:36 +08:00
frps:
2017-03-09 02:03:47 +08:00
go build -o bin/frps ./cmd/frps
@cp -rf ./assets/static ./bin
2016-01-27 21:24:36 +08:00
frpc:
2017-03-09 02:03:47 +08:00
go build -o bin/frpc ./cmd/frpc
2016-02-03 18:14:16 +08:00
2016-05-17 19:13:37 +08:00
test: gotest
gotest:
2017-03-10 00:52:32 +08: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/...
2018-01-18 14:53:44 +08:00
ci:
2017-03-28 00:27:30 +08:00
cd ./tests && ./run_test.sh && cd -
2017-03-10 00:52:32 +08:00
go test -v ./tests/...
2017-03-28 00:27:30 +08:00
cd ./tests && ./clean_test.sh && cd -
2016-05-17 19:13:37 +08:00
2018-01-18 14:53:44 +08:00
alltest: gotest ci
2016-05-17 19:13:37 +08:00
clean:
rm -f ./bin/frpc
rm -f ./bin/frps
cd ./tests && ./clean_test.sh && cd -
save:
2017-03-10 00:52:32 +08:00
godep save ./...