mirror of
https://github.com/xor-gate/go-socks5-ssh-proxy
synced 2026-03-23 06:16:35 +01:00
Initial working version
This commit is contained in:
33
vendor/github.com/xor-gate/sshfp/Makefile
generated
vendored
Normal file
33
vendor/github.com/xor-gate/sshfp/Makefile
generated
vendored
Normal file
@ -0,0 +1,33 @@
|
||||
export CGO_ENABLED=0
|
||||
export GOPATH?=$(shell go env GOPATH)
|
||||
export DESTDIR?=$(GOPATH)/bin
|
||||
export GOBIN?=$(DESTDIR)
|
||||
|
||||
all: build
|
||||
ci: env test
|
||||
|
||||
install:
|
||||
go get ./...
|
||||
|
||||
env:
|
||||
go env
|
||||
echo "---"
|
||||
|
||||
dep:
|
||||
go get -u ./
|
||||
|
||||
build:
|
||||
go build
|
||||
go install github.com/xor-gate/sshfp/cmd/sshfp
|
||||
|
||||
test:
|
||||
go test -v $(shell go list ./... | grep -v '^vendor\/')
|
||||
|
||||
lint:
|
||||
gometalinter --config .gometalinter.conf
|
||||
|
||||
clean:
|
||||
#rm -Rf $(TMPDIR)/debpkg*
|
||||
|
||||
fmt:
|
||||
gofmt -s -w .
|
||||
Reference in New Issue
Block a user