-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
32 lines (30 loc) · 832 Bytes
/
Copy pathMakefile
File metadata and controls
32 lines (30 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
$(shell mkdir -p _bin/)
export GOBIN := $(CURDIR)/_bin/
ifneq (,$(wildcard .env.mk))
include .env.mk
endif
ifneq (,$(wildcard .env))
include .env
endif
include _makefiles/asciidoc.mk
include _makefiles/clang-format.mk
include _makefiles/cspell.mk
include _makefiles/drawio.mk
include _makefiles/go-build.mk
include _makefiles/go-licenses.mk
include _makefiles/go-test.mk
include _makefiles/go.mk
include _makefiles/golangci-lint.mk
include _makefiles/govulncheck.mk
include _makefiles/hugo.mk
include _makefiles/markdownlint.mk
include _makefiles/misspell.mk
include _makefiles/nfpm.mk
include _makefiles/prettier.mk
include _makefiles/protolint.mk
include _makefiles/scanoss.mk
include _makefiles/shellcheck.mk
include _makefiles/shfmt.mk
include _makefiles/textlint.mk
include _makefiles/trivy.mk
include _makefiles/util.mk