SakuraFrp/Makefile

47 lines
793 B
Makefile
Raw Normal View History

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