-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate-Makefile
317 lines (264 loc) · 8 KB
/
template-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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
#!/usr/bin/make -f
# Install/Uninstall make script for `<<TEMPLATE_PROJECT>>` CLang plugin
# Copyright (C) <<TEMPLATE_DATE>> <<TEMPLATE_AUTHOR>>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, version 3 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
# Make variables to satisfy conventions
#
NAME = <<TEMPLATE_PROJECT>>
VERSION = <<TEMPLATE_VERSION>>
PKG_NAME = $(NAME)-$(VERSION)
#
# Make variables that readers &/or maintainers may wish to modify
#
## C Compiler options
CC = gcc
CFLAGS = -g -Wall
AFLAGS = -S -Wall
## Git options
GIT_REMOTE__BRANCH := main
GIT_REMOTE__NAME := origin
GIT_LOCAL__BRANCH := local
ifeq '$(shell id -u)' '0'
INSTALL_DIRECTORY := /usr/local/sbin
else
INSTALL_DIRECTORY := <<TEMPLATE_INSTALL_DIRECTORY>>
endif
#
# Make variables set upon run-time
#
## Detect Operating System
ifeq '$(findstring :,$(PATH))' ';'
__OS__ := Windows
else
__OS__ := $(shell uname 2>/dev/null || echo 'Unknown')
__OS__ := $(patsubst CYGWIN%,Cygwin,$(__OS__))
__OS__ := $(patsubst MSYS%,MSYS,$(__OS__))
__OS__ := $(patsubst MINGW%,MSYS,$(__OS__))
endif
ifeq '$(__OS__)' 'Windows'
__PATH_SEPARATOR__ := \\
else
__PATH_SEPARATOR__ := /
endif
#
# Lambda-like functions
#
path_append = $(strip $(1))$(strip $(__PATH_SEPARATOR__))$(strip $(2))
#
# Make variables built upon run-time
#
## Obtain directory path that this Makefile lives in
## Note ':=' is to avoid late binding that '=' entails
ROOT_DIRECTORY_PATH := $(realpath $(dir $(abspath $(lastword $(MAKEFILE_LIST)))))
ROOT_DIRECTORY_NAME := $(notdir $(patsubst %/,%,$(ROOT_DIRECTORY_PATH)))
SOURCE_DIRECTORY := $(call path_append, $(ROOT_DIRECTORY_PATH), source)
OUTPUT_DIRECTORY := $(call path_append, $(ROOT_DIRECTORY_PATH), output)
SOURCE_PATH := $(call path_append, $(SOURCE_DIRECTORY), $(NAME).c)
OUTPUT_PATH := $(call path_append, $(OUTPUT_DIRECTORY), $(NAME).o)
ASSEMBLY_PATH := $(call path_append, $(OUTPUT_DIRECTORY), $(NAME).asm)
INSTALL_PATH := $(call path_append, $(INSTALL_DIRECTORY), $(NAME))
#
# Override variables via optional configuration file
#
CONFIG_PATH := $(call path_append, $(ROOT_DIRECTORY_PATH), .config-make)
ifneq ("$(wildcard $(CONFIG_PATH))", "")
include $(CONFIG_PATH)
endif
#
# Make options/commands
#
.ONESHELL: install uninstall
.SILENT: default\
ci-test\
install\
uninstall\
upgrade\
git-upgrades\
config\
clean\
git-checkout\
git-fetch\
git-merge\
git-submodule-update\
git-track-changes\
assemble\
compile\
execute\
link\
unlink\
copy\
remove\
list
.PHONY: default\
ci-test\
install\
uninstall\
upgrade\
git-upgrades\
config\
clean\
git-checkout\
git-fetch\
git-merge\
git-submodule-update\
git-track-changes\
assemble\
compile\
execute\
link\
unlink\
copy\
remove\
list
##
#
default: ## Run by default when no targets are supplied
default: | compile
ci-test: ## Runs targets -> compile execute
ci-test: | compile execute
install: ## Runs targets -> git-checkout compile link
install: | git-checkout compile link
uninstall: ## Runs targets -> unlink
uninstall: | unlink
upgrade: ## Runs targets -> unlink git-upgrades compile link
upgrade: | unlink git-upgrades compile link
git-upgrades: ## Runts targets -> git-checkout git-fetch git-track-changes git-merge git-submodule-update
git-upgrades: | git-checkout git-fetch git-track-changes git-merge git-submodule-update
##
#
config: SHELL := /bin/bash
config: ## Writes configuration file
tee "$(CONFIG_PATH)" 1>/dev/null <<EOF
SCRIPT_NAME = $(SCRIPT_NAME)
INSTALL_DIRECTORY = $(INSTALL_DIRECTORY)
__OS__ = $(__OS__)
__PATH_SEPARATOR__ = $(__PATH_SEPARATOR__)
GIT_REMOTE__BRANCH = $(GIT_REMOTE__BRANCH)
GIT_REMOTE__NAME = $(GIT_REMOTE__NAME)
GIT_LOCAL__BRANCH = $(GIT_LOCAL__BRANCH)
CC = $(CC)
AFLAGS = $(AFLAGS)
CFLAGS = $(CFLAGS)
# vim: filetype=make
EOF
clean: SHELL := /bin/bash
clean: ## Removes configuration file
[[ -f "$(CONFIG)" ]] && {
rm -v "$(CONFIG)"
}
##
#
git-checkout: SHELL := /bin/bash
git-checkout: ## Checkout Git branch to track local changes
cd "$(ROOT_DIRECTORY_PATH)"
_git_branches="$$(git branch --list)"
_remote_branch="$(GIT_REMOTE__BRANCH)"
_local_branch="$$(awk '$$0 ~ $(GIT_LOCAL__BRANCH) { gsub("[* ]", ""); print; }' <<<"$${_git_branches}" | head -1)"
if (( "$${#_local_branch}" )); then
git checkout "$${#_local_branch}"
else
git checkout -b "$${#_local_branch}"
fi
git-fetch: SHELL := /bin/bash
git-fetch: ## Fetches updates from Git remote
cd "$(ROOT_DIRECTORY_PATH)"
git fetch $(GIT_REMOTE__NAME) $(GIT_REMOTE__BRANCH)
git-merge: SHELL := /bin/bash
git-merge: ## Merges changes from Git remote
cd "$(ROOT_DIRECTORY_PATH)"
git merge --strategy-option ours --squash "$(GIT_REMOTE__BRANCH)"
git-submodule-update: SHELL := /bin/bash
git-submodule-update: ## Runs update commands for Git submodules
cd "$(ROOT_DIRECTORY_PATH)"
git submodule update --init --merge --recursive
git-track-changes: SHELL := /bin/bash
git-track-changes: ## Runs `git add --all && git commit -m ':robot: Tracks local customizations'`
cd "$(ROOT_DIRECTORY_PATH)"
if grep -qE -- '^Untracked files|^Changes to be committed|^Changes not staged' <<<"$$(git status)"; then
git add --all && git commit -m ':robot: Tracks local customizations'
fi
##
#
assemble: ## Builds assembly file from source
assemble: $(SOURCE_PATH)
$(CC) $(AFLAGS) "$(SOURCE_PATH)" -o "$(ASSEMBLY_PATH)"
compile: ## Compiles binary from source file(s)
compile: $(SOURCE_PATH)
$(CC) $(CFLAGS) "$(SOURCE_PATH)" -o "$(OUTPUT_PATH)"
execute: SHELL := /bin/bash
execute: ## Runs compiled executable
execute: $(OUTPUT_PATH)
"$(OUTPUT_PATH)" <<<"2000"
"$(OUTPUT_PATH)" <<<"1900" || { true; }
"$(OUTPUT_PATH)" <<<"noop" || { true; }
"$(OUTPUT_PATH)" <<<"2400"
##
#
link: SHELL := /bin/bash
link: ## Symbolically links executable
if [[ -L "$(INSTALL_PATH)" ]]; then
printf >&2 'Link already exists -> %s\n' "$(INSTALL_PATH)"
elif [[ -f "$(INSTALL_PATH)" ]]; then
printf >&2 'Error: link target is a file -> %s\n' "$(INSTALL_PATH)"
else
ln -sv "$(SOURCE_PATH)" "$(INSTALL_PATH)"
fi
unlink: SHELL := /bin/bash
unlink: ## Removes symbolic link to executable
if [[ -L "$(INSTALL_PATH)" ]]; then
rm -v "$(INSTALL_PATH)"
else
printf >&2 'Error: no link to remove at -> %s\n' "$(INSTALL_PATH)"
fi
copy: SHELL := /bin/bash
copy: ## Copy executable to install path
if [[ -L "$(INSTALL_PATH)" ]]; then
printf >&2 'Link already exists -> %s\n' "$(INSTALL_PATH)"
elif [[ -f "$(INSTALL_PATH)" ]]; then
printf >&2 'File already exists -> %s\n' "$(INSTALL_PATH)"
else
cp -v "$(SOURCE_PATH)" "$(INSTALL_PATH)"
fi
remove: SHELL := /bin/bash
remove: ## Removes executable copy from install path
if [[ -f "$(INSTALL_PATH)" ]]; then
rm -v "$(INSTALL_PATH)"
else
printf >&2 'Error: no file to remove at -> %s\n' "$(INSTALL_PATH)"
fi
##
#
list: SHELL := /bin/bash
list: ## Lists available make commands
gawk 'BEGIN {
delete matched_lines
}
{
if ($$0 ~ "^[a-z0-9A-Z-]{1,32}: [#]{1,2}[[:print:]]*$$") {
matched_lines[length(matched_lines)] = $$0
}
}
END {
print "## Make Commands for $(NAME) ##\n"
for (k in matched_lines) {
split(matched_lines[k], line_components, ":")
gsub(" ## ", " ", line_components[2])
print line_components[1]
print line_components[2]
if ((k + 1) != length(matched_lines)) {
print
}
}
}' "$(ROOT_DIRECTORY_PATH)/Makefile"