make: cleanup by removing unused old values

This commit is contained in:
Oliver Gugger 2025-11-25 14:02:40 +01:00
parent c92b7d5fd9
commit d78332a3ed
No known key found for this signature in database
GPG key ID: 8E4256593F177720

View file

@ -1,14 +1,8 @@
PKG := github.com/lightninglabs/chantools
TOOLS_DIR := tools
GO_BIN := ${GOPATH}/bin
GOFILES_NOVENDOR = $(shell find . -type f -name '*.go' -not -path "./vendor/*")
GOLIST := go list $(PKG)/... | grep -v '/vendor/'
GOIMPORTS_BIN := $(GO_BIN)/gosimports
GOIMPORTS_PKG := github.com/rinchsan/gosimports/cmd/gosimports
GOBUILD := CGO_ENABLED=0 go build -v
GOINSTALL := CGO_ENABLED=0 go install -v
GOTEST := CGO_ENABLED=0 go test -v
@ -91,4 +85,4 @@ docs: install command-generator-build
@$(call print, "Rendering docs.")
chantools doc
.PHONY: unit itest build install release fmt lint docs docker-tools
.PHONY: unit itest build install release fmt lint docs