frp/Makefile

54 lines
970 B
Makefile
Raw Normal View History

2016-01-27 14:24:36 +01:00
export PATH := $(GOPATH)/bin:$(PATH)
export GO15VENDOREXPERIMENT := 1
2016-01-27 14:24:36 +01:00
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:
2017-06-04 14:47:24 +02:00
go fmt ./assets/...
go fmt ./client/...
go fmt ./cmd/...
go fmt ./models/...
go fmt ./server/...
go fmt ./utils/...
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/...
alltest: gotest
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
clean:
rm -f ./bin/frpc
rm -f ./bin/frps
cd ./tests && ./clean_test.sh && cd -
save:
2017-03-09 17:52:32 +01:00
godep save ./...