export PATH := $(GOPATH)/bin:$(PATH) export GO15VENDOREXPERIMENT := 1 all: fmt build build: frps frpc # compile assets into binary file assets: go get -d github.com/rakyll/statik @go install github.com/rakyll/statik @rm -rf ./assets/statik go generate ./assets/... fmt: go fmt ./... frps: go build -o bin/frps ./cmd/frps @cp -rf ./assets/static ./bin frpc: go build -o bin/frpc ./cmd/frpc test: gotest gotest: 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 cd ./test && ./run_test.sh && cd - go test -v ./tests/... cd ./test && ./clean_test.sh && cd - clean: rm -f ./bin/frpc rm -f ./bin/frps cd ./test && ./clean_test.sh && cd - save: godep save ./...