Skip to content

Commit

Permalink
Add make tools
Browse files Browse the repository at this point in the history
  • Loading branch information
sevein committed Feb 5, 2024
1 parent 627126d commit 27a124e
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,18 @@ include hack/make/dep_mockgen.mk
include hack/make/dep_shfmt.mk
include hack/make/dep_tparse.mk

# Lazy-evaluated list of tools.
TOOLS = $(ENT) \
$(GOA) \
$(GOLANGCI_LINT) \
$(GOMAJOR) \
$(GOSEC) \
$(GOTESTSUM) \
$(MIGRATE) \
$(MOCKGEN) \
$(SHFMT) \
$(TPARSE)

define NEWLINE


Expand All @@ -48,6 +60,9 @@ TEST_IGNORED_PACKAGES := $(filter $(IGNORED_PACKAGES),$(PACKAGES))

export PATH:=$(GOBIN):$(PATH)

tools: # @HELP Install tools.
tools: $(TOOLS)

env: # @HELP Print Go env variables.
env:
go env
Expand Down

0 comments on commit 27a124e

Please sign in to comment.