Initial working version

This commit is contained in:
2024-07-24 22:57:32 +02:00
commit 44d50d5f7c
789 changed files with 270992 additions and 0 deletions

33
vendor/github.com/xor-gate/sshfp/Makefile generated vendored Normal file
View 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 .