-
Notifications
You must be signed in to change notification settings - Fork 3
/
GNUmakefile
391 lines (342 loc) · 15.9 KB
/
GNUmakefile
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
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
ifeq ($(project),)
PROJECT_NAME := $(notdir $(PWD))
else
PROJECT_NAME := $(project)
endif
export PROJECT_NAME
VERSION :=$(shell cat version)
export VERSION
TIME :=$(shell date +%s)
export TIME
OS :=$(shell uname -s)
export OS
OS_VERSION :=$(shell uname -r)
export OS_VERSION
ARCH :=$(shell uname -m)
export ARCH
ifeq ($(ARCH),x86_64)
TRIPLET :=x86_64-linux-gnu
export TRIPLET
endif
ifeq ($(ARCH),arm64)
TRIPLET :=aarch64-linux-gnu
export TRIPLET
endif
ifeq ($(ARCH),arm64)
TRIPLET :=aarch64-linux-gnu
export TRIPLET
endif
HOMEBREW :=$(shell which brew || false)
RUSTUP_INIT_SKIP_PATH_CHECK=yes
TOOLCHAIN=stable
Z= ##
ifneq ($(toolchain),)
ifeq ($(toolchain),nightly)
TOOLCHAIN=nightly
Z=-Z unstable-options
endif
ifeq ($(toolchain),stable)
TOOLCHAIN=stable
Z= ##
endif
endif
export RUSTUP_INIT_SKIP_PATH_CHECK
export TOOLCHAIN
export Z
SUBMODULES=:$(shell cat .gitmodules | grep path | cut -d ' ' -f 3)
ifeq ($(verbose),true)
VERBOSE :=-v
else
VERBOSE :=
endif
export VERBOSE
ifeq ($(reuse),true)
REUSE :=-r
else
REUSE :=
endif
export REUSE
ifeq ($(bind),true)
BIND :=-b
else
BIND :=
endif
export BIND
ifeq ($(token),)
GITHUB_TOKEN :=$(shell cat ~/GITHUB_TOKEN.txt || echo "0")
else
GITHUB_TOKEN :=$(shell echo $(token))
endif
export GITHUB_TOKEN
export $(cat ~/GITHUB_TOKEN) && make act
PYTHON := $(shell which python)
export PYTHON
PYTHON2 := $(shell which python2)
export PYTHON2
PYTHON3 := $(shell which python3)
export PYTHON3
PIP := $(shell which pip)
export PIP
PIP2 := $(shell which pip2)
export PIP2
PIP3 := $(shell which pip3)
export PIP3
PYTHON_VENV := $(shell python -c "import sys; sys.stdout.write('1') if hasattr(sys, 'base_prefix') else sys.stdout.write('0')")
PYTHON3_VENV := $(shell python3 -c "import sys; sys.stdout.write('1') if hasattr(sys, 'real_prefix') else sys.stdout.write('0')")
python_version_full := $(wordlist 2,4,$(subst ., ,$(shell python3 --version 2>&1)))
python_version_major := $(word 1,${python_version_full})
python_version_minor := $(word 2,${python_version_full})
python_version_patch := $(word 3,${python_version_full})
my_cmd.python.3 := $(PYTHON3) some_script.py3
my_cmd := ${my_cmd.python.${python_version_major}}
PYTHON_VERSION := ${python_version_major}.${python_version_minor}.${python_version_patch}
PYTHON_VERSION_MAJOR := ${python_version_major}
PYTHON_VERSION_MINOR := ${python_version_minor}
export python_version_major
export python_version_minor
export python_version_patch
export PYTHON_VERSION
#GIT CONFIG
GIT_USER_NAME := $(shell git config user.name || echo $(PROJECT_NAME))
export GIT_USER_NAME
GH_USER_NAME := $(shell git config user.name || echo $(PROJECT_NAME))
#MIRRORS
GH_USER_REPO := $(GH_USER_NAME).github.io
GH_USER_SPECIAL_REPO := $(GH_USER_NAME)
KB_USER_REPO := $(GH_USER_NAME).keybase.pub
#GITHUB RUNNER CONFIGS
ifneq ($(ghuser),)
GH_USER_NAME := $(ghuser)
GH_USER_SPECIAL_REPO := $(ghuser)/$(ghuser)
endif
ifneq ($(kbuser),)
KB_USER_NAME := $(kbuser)
KB_USER_REPO := $(kbuser).keybase.pub
endif
export GIT_USER_NAME
export GH_USER_REPO
export GH_USER_SPECIAL_REPO
export KB_USER_REPO
GIT_USER_EMAIL := $(shell git config user.email || echo $(PROJECT_NAME))
export GIT_USER_EMAIL
GIT_SERVER := https://github.com
export GIT_SERVER
GIT_SSH_SERVER := [email protected]
export GIT_SSH_SERVER
GIT_PROFILE := $(shell git config user.name || echo $(PROJECT_NAME))
export GIT_PROFILE
GIT_BRANCH := $(shell git rev-parse --abbrev-ref HEAD 2>/dev/null || \
echo $(PROJECT_NAME))
export GIT_BRANCH
GIT_HASH := $(shell git rev-parse --short HEAD 2>/dev/null || \
echo $(PROJECT_NAME))
export GIT_HASH
GIT_PREVIOUS_HASH := $(shell git rev-parse --short master@{1} 2>/dev/null || \
echo $(PROJECT_NAME))
export GIT_PREVIOUS_HASH
GIT_REPO_ORIGIN := $(shell git remote get-url origin 2>/dev/null || \
echo $(PROJECT_NAME))
export GIT_REPO_ORIGIN
GIT_REPO_NAME := $(PROJECT_NAME)
export GIT_REPO_NAME
GIT_REPO_PATH := $(HOME)/$(GIT_REPO_NAME)
export GIT_REPO_PATH
.PHONY:- help
-:
@awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?##/ {printf "\033[36m%-15s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST)
@echo
more:## more help
@sed -n 's/^##//p' ${MAKEFILE_LIST} | column -t -s ':' | sed -e 's/^/ /'
#$(MAKE) -f Makefile help
-include Makefile
##initialize
## git submodule update --init --recursive
initialize:## ensure submodules exist
git submodule update --init --recursive
.ONESHELL:
docker-start:venv
##docker-start
## start docker on Linux or Darwin
@echo CI=$(CI)
@touch requirements.txt && $(PYTHON3) -m pip install -q -r requirements.txt
@touch requirements.txt && $(PYTHON3) -m pip install -U virtualenv
@test -d .venv || $(PYTHON3) -m virtualenv .venv
@( \
. .venv/bin/activate; pip install -q -r requirements.txt; \
python3 -m pip install -q pipenv \
pip install -q --upgrade pip; \
);
@( \
while ! docker system info > /dev/null 2>&1; do\
echo 'Waiting for docker to start...';\
if [[ '$(OS)' == 'Linux' ]]; then\
type -P systemctl && systemctl restart docker.service || type -P service && service restart docker;\
fi;\
if [[ '$(OS)' == 'Darwin' ]]; then\
echo $(CI);\
if [[ '$(CI)' != 'True' ]]; then\
type -P docker && open --background -a /./Applications/Docker.app/Contents/MacOS/Docker || brew install --cask docker;\
fi;\
fi;\
sleep 1;\
done\
)
detect:## install sequence got Darwin and Linux
##detect
bash -c "[ '$(shell uname -s)' == 'Darwin' ] && type -P brew >/tmp/gnostr.log && \
export LIBRARY_PATH='$(LIBRARY_PATH):$(brew --prefix)/lib' || echo"
## detect uname -s uname -m uname -p and install sequence
## Darwin
ifneq ($(shell id -u),0)
@echo
@echo $(shell id -u -n) 'not root'
@echo
endif
#bash -c "[ '$(shell uname -s)' == 'Darwin' ] && brew update || echo "
bash -c "[ '$(shell uname -s)' == 'Darwin' ] && brew install autoconf || echo "
bash -c "[ '$(shell uname -s)' == 'Darwin' ] && brew install automake || echo "
## bash -c "[ '$(shell uname -s)' == 'Darwin' ] && brew install boost || echo "
bash -c "[ '$(shell uname -s)' == 'Darwin' ] && brew install cmake --cask || echo "
bash -c "[ '$(shell uname -s)' == 'Darwin' ] && brew install coreutils || echo "
#bash -c "[ '$(shell uname -s)' == 'Darwin' ] && brew install --cask docker || echo "
#bash -c "[ '$(shell uname -s)' == 'Darwin' ] && brew install gcc || echo "
bash -c "[ '$(shell uname -s)' == 'Darwin' ] && brew install expat || echo "
bash -c "[ '$(shell uname -s)' == 'Darwin' ] && brew install gettext || echo "
bash -c "[ '$(shell uname -s)' == 'Darwin' ] && brew install git-archive-all || echo "
bash -c "[ '$(shell uname -s)' == 'Darwin' ] && brew install git-gui || echo "
bash -c "[ '$(shell uname -s)' == 'Darwin' ] && brew install glib-openssl || echo "
bash -c "[ '$(shell uname -s)' == 'Darwin' ] && brew install golang || echo "
bash -c "[ '$(shell uname -s)' == 'Darwin' ] && brew install libtool || echo "
bash -c "[ '$(shell uname -s)' == 'Darwin' ] && brew install mercurial || echo "
bash -c "[ '$(shell uname -s)' == 'Darwin' ] && brew install node@14 || echo "
bash -c "[ '$(shell uname -s)' == 'Darwin' ] && brew install pandoc || echo "
bash -c "[ '$(shell uname -s)' == 'Darwin' ] && brew install pkg-config || echo "
bash -c "[ '$(shell uname -s)' == 'Darwin' ] && brew install protobuf || echo "
bash -c "[ '$(shell uname -s)' == 'Darwin' ] && brew install python3 || echo "
bash -c "[ '$(shell uname -s)' == 'Darwin' ] && brew install rustup || echo "
bash -c "[ '$(shell uname -s)' == 'Darwin' ] && brew install secp256k1 || echo "
bash -c "[ '$(shell uname -s)' == 'Darwin' ] && brew install virtualenv || echo "
bash -c "[ '$(shell uname -s)' == 'Darwin' ] && brew link --overwrite virtualenv || echo "
bash -c "[ '$(shell uname -s)' == 'Darwin' ] && brew install zlib || echo "
#bash -c "[ '$(shell uname -s)' == 'Darwin' ] && /Applications/Docker.app/Contents/Resources/bin/docker system info || echo "
## Linux
ifneq ($(shell id -u),0)
@echo
@echo $(shell id -u -n) 'not root'
@echo
endif
bash -c "[ '$(shell uname -s)' == 'Linux' ] && type -P brew >/tmp/gnostr.log && \
export LIBRARY_PATH='$(LIBRARY_PATH):$(brew --prefix)/lib' || echo"
bash -c "[ '$(shell uname -s)' == 'Linux' ] && sudo apt-get update || echo "
bash -c "[ '$(shell uname -s)' == 'Linux' ] && sudo apt-get install autoconf || echo "
bash -c "[ '$(shell uname -s)' == 'Linux' ] && sudo apt-get install bison || echo "
bash -c "[ '$(shell uname -s)' == 'Linux' ] && sudo apt-get install build-essential || echo "
bash -c "[ '$(shell uname -s)' == 'Linux' ] && sudo apt-get install cargo || echo "
bash -c "[ '$(shell uname -s)' == 'Linux' ] && sudo apt-get install clang || echo "
bash -c "[ '$(shell uname -s)' == 'Linux' ] && sudo apt-get install cmake-curses-gui || echo "
bash -c "[ '$(shell uname -s)' == 'Linux' ] && sudo apt-get install cmake || echo "
bash -c "[ '$(shell uname -s)' == 'Linux' ] && sudo apt-get install expat || echo "
bash -c "[ '$(shell uname -s)' == 'Linux' ] && sudo apt-get install gettext || echo "
bash -c "[ '$(shell uname -s)' == 'Linux' ] && sudo apt-get install golang-go || echo "
bash -c "[ '$(shell uname -s)' == 'Linux' ] && sudo apt-get install libcurl4-openssl-dev || echo"
bash -c "[ '$(shell uname -s)' == 'Linux' ] && sudo apt-get install libssl-dev || echo "
bash -c "[ '$(shell uname -s)' == 'Linux' ] && sudo apt-get install libtool || echo "
bash -c "[ '$(shell uname -s)' == 'Linux' ] && sudo apt-get install mercurial || echo "
bash -c "[ '$(shell uname -s)' == 'Linux' ] && sudo apt-get install npm || echo "
bash -c "[ '$(shell uname -s)' == 'Linux' ] && sudo apt-get install pandoc || echo "
bash -c "[ '$(shell uname -s)' == 'Linux' ] && sudo apt-get install pkg-config || echo "
bash -c "[ '$(shell uname -s)' == 'Linux' ] && sudo apt-get install protobuf-compiler || echo "
bash -c "[ '$(shell uname -s)' == 'Linux' ] && sudo apt-get install python3 || echo "
bash -c "[ '$(shell uname -s)' == 'Linux' ] && sudo apt-get install python3-pip || echo "
bash -c "[ '$(shell uname -s)' == 'Linux' ] && sudo apt-get install python-is-python3 || echo "
bash -c "[ '$(shell uname -s)' == 'Linux' ] && sudo apt-get install util-linux || echo "
bash -c "[ '$(shell uname -s)' == 'Linux' ] && sudo apt-get install virtualenv || echo "
bash -c "[ '$(shell uname -s)' == 'Linux' ] && sudo apt-get install zlib1g-dev || echo "
## install gvm sequence
@rm -rf $(HOME)/.gvm || echo "not removing ~/.gvm"
@bash -c "bash < <(curl -s -S -L https://raw.githubusercontent.com/moovweb/gvm/master/binscripts/gvm-installer) || echo 'not installing gvm...'"
bash -c "[ '$(shell uname -m)' == 'x86_64' ] && echo 'is x86_64' || echo 'not x86_64';"
bash -c "[ '$(shell uname -m)' == 'arm64' ] && [ '$(shell uname -s)' == 'Darwin' ] && type -P brew && brew install pandoc || echo 'not arm64 AND Darwin';"
bash -c "[ '$(shell uname -m)' == 'i386' ] && echo 'is i386' || echo 'not i386';"
## install rustup sequence
$(shell echo which rustup) || curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | bash -s -- -y --no-modify-path --default-toolchain stable --profile default #& . "$(HOME)/.cargo/env"
## install nvm sequence
@bash -c "curl https://raw.githubusercontent.com/creationix/nvm/master/install.sh | bash && export NVM_DIR='$(HOME)/.nvm'; [ -s '$(NVM_DIR)/nvm.sh' ] && \. '$(NVM_DIR)/nvm.sh'; [ -s '$(NVM_DIR)/bash_completion' ] && \. '$(NVM_DIR)/bash_completion' &"
bash -c "which autoconf || echo "
bash -c "which automake || echo "
bash -c "which brew || echo "
bash -c "which cargo || echo "
bash -c "which cmake || echo "
bash -c "which go || echo "
bash -c "which node || echo "
bash -c "which rustup || echo "
.PHONY: report
report:## print make variables
## print make variables
@echo ''
@echo 'TIME=${TIME}'
@echo 'PROJECT_NAME=${PROJECT_NAME}'
@echo 'VERSION=${VERSION}'
@echo ''
@echo 'OS=${OS}'
@echo 'OS_VERSION=${OS_VERSION}'
@echo 'ARCH=${ARCH}'
@echo ''
@echo 'SUBMODULES=${SUBMODULES}'
@echo ''
@echo 'PYTHON=${PYTHON}'
@echo 'PYTHON2=${PYTHON2}'
@echo 'PYTHON3=${PYTHON3}'
@echo ''
@echo 'PIP=${PIP}'
@echo 'PIP2=${PIP2}'
@echo 'PIP3=${PIP3}'
@echo ''
@echo 'PYTHON_VENV=${PYTHON_VENV}'
@echo 'PYTHON3_VENV=${PYTHON3_VENV}'
@echo ''
@echo 'GIT_USER_NAME=${GIT_USER_NAME}'
@echo 'GH_USER_REPO=${GH_USER_REPO}'
@echo 'GH_USER_SPECIAL_REPO=${GH_USER_SPECIAL_REPO}'
@echo 'KB_USER_REPO=${KB_USER_REPO}'
@echo 'GIT_USER_EMAIL=${GIT_USER_EMAIL}'
@echo 'GIT_SERVER=${GIT_SERVER}'
@echo 'GIT_PROFILE=${GIT_PROFILE}'
@echo 'GIT_BRANCH=${GIT_BRANCH}'
@echo 'GIT_HASH=${GIT_HASH}'
@echo 'GIT_PREVIOUS_HASH=${GIT_PREVIOUS_HASH}'
@echo 'GIT_REPO_ORIGIN=${GIT_REPO_ORIGIN}'
@echo 'GIT_REPO_NAME=${GIT_REPO_NAME}'
@echo 'GIT_REPO_PATH=${GIT_REPO_PATH}'
checkbrew:## install brew command
## install brew command
ifeq ($(HOMEBREW),)
@/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
else
@type -P brew && brew install wxWidgets [email protected] gettext
$(MAKE) detect
## brew install wxWidgets [email protected] gettext
## make detect
endif
tag:## git tag & git push
tags:tag
##tag
## git tag $(OS)-$(OS_VERSION)-$(ARCH)-$(shell date +%s)
@git tag $(OS)-$(OS_VERSION)-$(ARCH)-$(shell date +%s)
@git push -f --tags || echo "unable to push tags..."
.PHONY: nvm
.ONESHELL:
nvm: ## nvm
@echo "$(NODE_VERSION)" > .nvmrc
@curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/master/install.sh | bash || git pull -C $(HOME)/.nvm && export NVM_DIR="$(HOME)/.nvm" && [ -s "$(NVM_DIR)/nvm.sh" ] && \. "$(NVM_DIR)/nvm.sh" && [ -s "$(NVM_DIR)/bash_completion" ] && \. "$(NVM_DIR)/bash_completion" && nvm install $(NODE_VERSION) && nvm use $(NODE_VERSION)
@source ~/.bashrc && nvm alias $(NODE_ALIAS) $(NODE_VERSION) &
nvm-clean: ## nvm-clean
@rm -rf ~/.nvm
-include gnostr.mk
-include gnostr-act.mk
-include venv.mk
-include clean.mk
-include cargo.mk
-include tests.mk
# vim: set noexpandtab:
# vim: set setfiletype make