-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
246 lines (208 loc) · 6.22 KB
/
Makefile
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
# MIT License
#
# Copyright (c) 2024 FMJ Studios
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
DBG_MAKEFILE ?=
ifeq ($(DBG_MAKEFILE),1)
$(warning ***** starting Makefile for goal(s) "$(MAKECMDGOALS)")
$(warning ***** $(shell date))
else
# If we're not debugging the Makefile, don't echo recipes.
MAKEFLAGS += -s
endif
# -------------------------------------
# Configuration
# -------------------------------------
SHELL := /bin/bash
export ROOT_DIR = $(shell git rev-parse --show-toplevel)
export PROJ_NAME = $(shell basename "$(ROOT_DIR)")
# ---------------------------
# Sources
# ---------------------------
FIND_FLAGS := -name "*.sh" -type f
SOURCES := $(shell find $(ROOT_DIR) $(FIND_FLAGS))
BUNDLES := scripts lib all
# Only export variables from here since we do not want to mix the top-level
# Makefile's notion of 'SOURCES' with the different sub-makes
export
# ---------------------------
# Constants
# ---------------------------
VERSION := 0.1.1
# Build output
OUT_DIR := $(ROOT_DIR)/dist
SCRIPT_DIR := $(ROOT_DIR)/scripts
LIB_DIR := $(ROOT_DIR)/lib
CI_DIR := $(ROOT_DIR)/.github
CI_LINTER_DIR := $(CI_DIR)/linters
TEST_DIR := $(ROOT_DIR)/test
# Documentation
DOCS_DIR := $(ROOT_DIR)/docs
MARKDOWNLINT_CONFIG := $(CI_LINTER_DIR)/.markdown-lint.yml
GITLEAKS_CONFIG := $(CI_LINTER_DIR)/.gitleaks.toml
# Executables
shellcheck := shellcheck
shfmt := shfmt
markdownlint := markdownlint
gitleaks := gitleaks
actionlint := actionlint
EXECUTABLES := $(shellcheck) $(shfmt) $(markdownlint) $(gitleaks) $(actionlint)
# ---------------------------
# User-defined variables
# ---------------------------
PRINT_HELP ?=
WHAT ?=
# ---------------------------
# Custom functions
# ---------------------------
define log
@case ${2} in \
gray) echo -e "\e[90m${1}\e[0m" ;; \
red) echo -e "\e[91m${1}\e[0m" ;; \
green) echo -e "\e[92m${1}\e[0m" ;; \
yellow) echo -e "\e[93m${1}\e[0m" ;; \
*) echo -e "\e[97m${1}\e[0m" ;; \
esac
endef
define log_info
$(call log, $(1), "gray")
endef
define log_success
$(call log, $(1), "green")
endef
define log_notice
$(call log, $(1), "yellow")
endef
define log_attention
$(call log, $(1), "red")
endef
# ---------------------------
# Source Targets
# ---------------------------
define ALL_INFO
# All creates all source bundles for distribution.
#
# Arguments:
# PRINT_HELP: 'y' or 'n'
endef
.PHONY: all
ifeq ($(PRINT_HELP), y)
all:
echo "$$ALL_INFO"
else
all: clean
$(call log_success, "Building all bundles into $(OUT_DIR)")
# do not remove the ending semicolon as it will break the target
$(foreach type,$(BUNDLES),$(MAKE) build WHAT=$(type);)
endif
define BUILD_INFO
# Build a source bundle for distribution.
#
# Arguments:
# PRINT_HELP: 'y' or 'n'
# WHAT: 'scripts', 'lib', 'bin'
endef
.PHONY: build
ifeq ($(PRINT_HELP), y)
build:
echo "$$BUILD_INFO"
else
build: out-dir
ifeq ($(WHAT),)
$(call log_success, "Building complete tarball bundle into $(OUT_DIR)")
@tar -vzcf "$(OUT_DIR)/$(PROJ_NAME)-$(VERSION).tar.gz" scripts/ lib/ bin/
@tar -vzcf "$(OUT_DIR)/$(PROJ_NAME)-scripts-$(VERSION).tar.gz" scripts/
@tar -vzcf "$(OUT_DIR)/$(PROJ_NAME)-lib-$(VERSION).tar.gz" lib/
@tar -vzcf "$(OUT_DIR)/$(PROJ_NAME)-bin-$(VERSION).tar.gz" bin/
else
$(call log_success, "Building tarball bundle for $(WHAT)")
@tar -vzcf "$(OUT_DIR)/$(PROJ_NAME)-$(WHAT)-$(VERSION).tar.gz" -C $(WHAT) .
endif
endif
define TEST_INFO
# Run tests for scripts, the Bash library or the executables.
#
# Arguments:
# PRINT_HELP: 'y' or 'n'
# WHAT: 'scripts', 'lib', 'bin'
endef
.PHONY: test
ifeq ($(PRINT_HELP), y)
test:
echo "$$TEST_INFO"
else
test: update-submodules
ifeq ($(WHAT),)
$(call log_success, "Testing all Bash sources for!")
@$(TEST_DIR)/bats/core/bin/bats -r $(TEST_DIR)/lib
else
$(call log_success, "Testing Bash sources for $(WHAT)")
@$(TEST_DIR)/bats/core/bin/bats -r $(TEST_DIR)/$(WHAT)
endif
endif
# ---------------------------
# Housekeeping
# ---------------------------
.PHONY: update-submodules
update-submodules:
$(call log_notice, "Updating BATS submodules for $(PROJ_NAME) at: $(TEST_DIR)")
git submodule update --init --force
.PHONY: clean
clean:
$(call log_attention, "Removing output directory for $(PROJ_NAME) at: $(OUT_DIR)")
@rm -rf $(OUT_DIR)
# ---------------------------
# Dependencies
# ---------------------------
.PHONY: out-dir
out-dir:
$(call log_notice, "Creating output directory for distribution at: $(OUT_DIR)")
@mkdir -p $(OUT_DIR)
# ---------------------------
# Checks
# ---------------------------
.PHONY: version
version:
@echo -n "$(VERSION)"
.PHONY: tools-check
tools-check:
$(foreach exe,$(EXECUTABLES), $(if $(shell command -v $(exe) 2> /dev/null), $(info Found $(exe)), $(info Please install $(exe))))
# ---------------------------
# Linting
# ---------------------------
.PHONY: lint
lint: markdownlint actionlint shellcheck shfmt gitleaks
.PHONY: markdownlint
markdownlint:
@markdownlint -c $(MARKDOWNLINT_CONFIG) '**/*.md' -i 'test/**/*'
.PHONY: actionlint
actionlint:
@actionlint
.PHONY: gitleaks
gitleaks:
@gitleaks detect --no-banner --no-git --redact --config $(GITLEAKS_CONFIG) --verbose --source .
.PHONY: shellcheck
shellcheck:
@shellcheck scripts/*.sh -x
@shellcheck lib/*.sh -x
@shellcheck bin/install bin/libtree -x
.PHONY: shfmt
shfmt:
@shfmt --apply-ignore --diff .