frp/Makefile

50 lines
858 B
Makefile
Raw Normal View History

2016-01-27 14:24:36 +01:00
export PATH := $(GOPATH)/bin:$(PATH)
2016-08-11 18:32:33 +02:00
all: fmt build
2016-01-27 14:24:36 +01:00
2017-03-09 17:52:32 +01:00
build: frps frpc
2016-01-27 14:24:36 +01:00
2016-08-11 18:39:39 +02:00
# compile assets into binary file
2017-03-26 20:21:37 +02: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-08 19:03:47 +01:00
go generate ./assets/...
2016-02-03 11:46:24 +01:00
fmt:
2018-03-21 04:52:11 +01:00
go fmt ./...
2017-03-09 17:52:32 +01:00
2016-01-27 14:24:36 +01:00
frps:
2017-03-08 19:03:47 +01:00
go build -o bin/frps ./cmd/frps
@cp -rf ./assets/static ./bin
2016-01-27 14:24:36 +01:00
frpc:
2017-03-08 19:03:47 +01:00
go build -o bin/frpc ./cmd/frpc
2016-02-03 11:14:16 +01:00
2016-05-17 13:13:37 +02:00
test: gotest
gotest:
2017-03-09 17:52:32 +01: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 07:53:44 +01:00
ci:
2017-03-27 18:27:30 +02:00
cd ./tests && ./run_test.sh && cd -
2017-03-09 17:52:32 +01:00
go test -v ./tests/...
2017-03-27 18:27:30 +02:00
cd ./tests && ./clean_test.sh && cd -
2016-05-17 13:13:37 +02:00
2018-04-10 11:46:49 +02:00
cic:
2018-01-23 10:11:59 +01:00
cd ./tests && ./clean_test.sh && cd -
2018-01-18 07:53:44 +01:00
alltest: gotest ci
2016-05-17 13:13:37 +02:00
clean:
rm -f ./bin/frpc
rm -f ./bin/frps
cd ./tests && ./clean_test.sh && cd -