-
Notifications
You must be signed in to change notification settings - Fork 825
/
Makefile
343 lines (296 loc) · 17.3 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
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
K ?= K.sh
MAJOR = 0
MINOR = 7
PATCH = 0
BUILD = 53
OBLIGATORY = DISCLAIMER: This is strict non-violent software: \n$\
if you hurt other living creatures, please stop; \n$\
otherwise remove all copies of the software now.
PERMISSIVE = This is free software: the UI and quoting engine are open source, \n$\
feel free to hack both as you need. \n$\
This is non-free software: built-in gateway exchange integrations \n$\
are licensed by/under the law of my grandma (since last century), \n$\
feel free to crack all as you need.
SOURCE := $(filter-out trading-bot,$(notdir $(wildcard src/bin/*))) trading-bot
CARCH = x86_64-linux-gnu \
arm-linux-gnueabihf \
aarch64-linux-gnu \
x86_64-apple-darwin23.5 \
x86_64-w64-mingw32
CHOST ?= $(or $(findstring $(shell test -n "`command -v g++`" && g++ -dumpmachine), \
$(CARCH)),$(subst build-,,$(firstword $(wildcard build-*))))
KHOST := $(shell echo $(CHOST) \
| sed 's/-\([a-z_0-9]*\)-\(linux\)$$/-\2-\1/' \
| sed 's/\([a-z_0-9]*\)-\([a-z_0-9]*\)-.*/\2-\1/' \
| sed 's/^w64/win64/' )
KBUILD := build-$(KHOST)
KHOME := $(if ${SYSTEMROOT},$(word 1,$(subst :, ,${SYSTEMROOT})):/,$(if \
$(findstring $(CHOST),$(lastword $(CARCH))),C:/,/var/lib/))K
ERR = *** K require g++ v12 or greater, but it was not found.
HINT := consider a symlink at /usr/bin/$(CHOST)-g++ pointing to your g++ executable
TPUT = $(if $(shell echo $${TERM}),$(shell tput $(1)))
STEP = $(call TPUT,setaf 2)$(call TPUT,setab 0)Building $(1)..$(call TPUT,sgr0)
SUDO = $(shell test -n "`command -v sudo`" && echo sudo)
KARGS := -std=c++23 -O3 -pthread \
-D'K_CHOST="$(KHOST)"' -D'K_SOURCE="K-$(KSRC)"' \
-D'K_BUILD="v$(MAJOR).$(MINOR).$(PATCH)+$(BUILD)"' \
-D'K_STAMP="$(shell date "+%Y-%m-%d %H:%M:%S")"' \
-D'K_HOME="$(KHOME)"' -D'K_HEAD="$(shell \
git rev-parse HEAD 2>/dev/null || echo HEAD \
)"' -I$(KBUILD)/include \
$(addprefix $(KBUILD)/lib/, \
K-$(KHOST).a \
libcurl.a libssl.a libcrypto.a libz.a libsqlite3.a \
cacert_embed.o \
) \
$(wildcard $(addprefix $(KBUILD)/lib/, \
K-$(KSRC)-client.o \
libuv.a \
)) \
$(addprefix -include , $(realpath \
$(addprefix src/bin/$(KSRC)/$(KSRC)., \
$(addsuffix .S, disk) \
$(addsuffix .h, ansi) \
) \
$(addprefix src/lib/Krypto.ninja-, \
$(addsuffix .S, disk) \
$(addsuffix .h, lang data apis bots) \
))) \
-D'DEBUG_FRAMEWORK="Krypto.ninja-test.h"' \
-D'DEBUG_SCENARIOS=<$(or \
$(realpath src/bin/$(KSRC)/$(KSRC).test.h), \
/dev/null \
)>' \
-D'using_Makefile(x)=<$(abspath \
src/bin/$(KSRC) \
)/using_\#\#x>' \
-D'using_data=$(KSRC).data.h' \
-D'using_main=$(KSRC).main.h' \
-D'OBLIGATORY_analpaper_SOFTWARE_LICENSE="$(OBLIGATORY)"'\
-D'PERMISSIVE_analpaper_SOFTWARE_LICENSE="$(PERMISSIVE)"'
all K: $(SOURCE)
hlep hepl help:
# #
# Available commands inside K top level directory: #
# make help - show this help #
# #
# make - compile K sources #
# make K - compile K sources #
# KALL=1 make K - compile K sources #
# make +portfolios - compile K sources #
# make hello-world - compile K sources #
# make scaling-bot - compile K sources #
# make stable--bot - compile K sources #
# make trading-bot - compile K sources #
# #
# make lib - compile K dependencies #
# KALL=1 make lib - compile K dependencies #
# make packages - provide K dependencies #
# make install - install K application #
# make docker - install K application #
# make reinstall - upgrade K application #
# make doc - compile K documentation #
# make test - run tests #
# make test-c - run static tests #
# #
# make list - show K instances #
# make start - start K instance #
# make startall - start K instances #
# make stop - stop K instance #
# make stopall - stop K instances #
# make restart - restart K instance #
# make restartall - restart K instances #
# #
# make diff - show commits and versions #
# make changelog - show commits #
# make upgrade - show commits and reinstall #
# #
# make download - download K src precompiled #
# make clean - remove external src files #
# KALL=1 make clean - remove external src files #
# make uninstall - remove /usr/local/bin/K-* #
# #
doc test:
@$(MAKE) -sC $@ KHOME=$(KHOME)
clean check lib:
ifdef KALL
unset KALL $(foreach chost,$(CARCH),&& $(MAKE) $@ CHOST=$(chost))
else
$(if $(shell ver="`$(CHOST)-g++ -dumpversion | cut -d'-' -f1`" && test $${ver%%.*} -lt 12 && echo 1),$(warning $(ERR));$(error $(HINT)))
@$(MAKE) -C src/lib $@ CHOST=$(CHOST) KHOST=$(KHOST) KHOME=$(KHOME)
endif
$(SOURCE):
$(info $(call STEP,$@))
$(MAKE) $(shell ! test -d src/bin/$@/[email protected] || echo client) src KSRC=$@
client: src/bin/$(KSRC)/$(KSRC).client
$(info $(call STEP,$(KSRC) $@))
$(MAKE) -C src/lib/Krypto.ninja-client KHOME=$(KHOME) KCLIENT=$(realpath $<)
$(foreach chost,$(CARCH), \
build=build-$(shell echo $(chost) | sed 's/-\([a-z_0-9]*\)-\(linux\)$$/-\2-\1/' | sed 's/\([a-z_0-9]*\)-\([a-z_0-9]*\)-.*/\2-\1/' | sed 's/^w64/win64/') \
&& ! test -d $${build} || (rm -rf $${build}/var/client && cp -R $(KHOME)/client $${build}/var/client \
&& $(MAKE) client.o CHOST=$(chost) chost=$(shell test -n "`command -v $(chost)-g++`" && echo $(chost)- || :) \
&& rm -rf $${build}/var/client) \
;)
rm -rf $(KHOME)/client
client.o: src/bin/$(KSRC)/$(KSRC).disk.S
$(chost)g++ -Wa,-I,$(KBUILD)/var/client,-I,src/lib/Krypto.ninja-client \
-include $^ -c src/lib/Krypto.ninja-disk.S -o $(KBUILD)/lib/K-$(KSRC)-$@
src: src/lib/Krypto.ninja-main.cxx src/bin/$(KSRC)/$(KSRC).main.h
ifdef KALL
unset KALL $(foreach chost,$(CARCH),&& $(MAKE) $@ CHOST=$(chost))
else
$(info $(call STEP,$(KSRC) $@ $(CHOST)))
$(if $(shell ver="`$(CHOST)-g++ -dumpversion | cut -d'-' -f1`" && test $${ver%%.*} -lt 12 && echo 1),$(warning $(ERR));$(error $(HINT)))
@$(CHOST)-g++ --version
@mkdir -p $(KBUILD)/bin
$(MAKE) $(if $(findstring darwin,$(CHOST)),Darwin,$(if $(findstring mingw32,$(CHOST)),Win32,$(shell uname -s))) CHOST=$(CHOST)
@chmod +x $(KBUILD)/bin/K-$(KSRC)*
@$(if $(findstring $(CHOST),$(firstword $(CARCH))),$(MAKE) system_install -s)
endif
Linux: src/lib/Krypto.ninja-main.cxx src/bin/$(KSRC)/$(KSRC).main.h
ifdef GITHUB_ACTIONS
@unset GITHUB_ACTIONS && $(MAKE) KCOV="--coverage" $@
else ifdef KUNITS
@unset KUNITS && $(MAKE) KTEST="$(KCOV) -DCATCH_CONFIG_FAST_COMPILE test/unit_testing_framework.cxx" $@
else ifndef KTEST
@$(MAKE) KTEST="-DNDEBUG" $@
else
$(CHOST)-g++ -s $(KTEST) -o $(KBUILD)/bin/K-$(KSRC) \
-static-libstdc++ -static-libgcc -rdynamic \
$< $(KARGS) -z execstack -ldl -Wall -Wextra -Wno-psabi
endif
Darwin: src/lib/Krypto.ninja-main.cxx src/bin/$(KSRC)/$(KSRC).main.h
$(CHOST)-g++ -s -DNDEBUG -o $(KBUILD)/bin/K-$(KSRC) -fvisibility=hidden -fvisibility-inlines-hidden \
-msse4.1 -maes -mpclmul -mmacosx-version-min=10.13 -nostartfiles -rdynamic \
$< $(KARGS) -ldl -framework SystemConfiguration -framework CoreFoundation
Win32: src/lib/Krypto.ninja-main.cxx src/bin/$(KSRC)/$(KSRC).main.h
$(CHOST)-g++-posix -s -DNDEBUG -o $(KBUILD)/bin/K-$(KSRC).exe \
-DCURL_STATICLIB -DSIGUSR1=SIGABRT -DSIGPIPE=SIGABRT \
$< $(KARGS) -static -lstdc++ -lgcc -lole32 -lbcrypt -lcrypt32 \
-lpsapi -luserenv -liphlpapi -lwldap32 -lws2_32 -ldbghelp
download:
curl -L https://github.com/ctubio/Krypto-trading-bot/releases/download/$(MAJOR).$(MINOR).x/K-$(MAJOR).$(MINOR).$(PATCH).$(BUILD)-$(KHOST).tar.gz | tar xz
@$(MAKE) system_install -s
@test -n "`ls *.sh 2>/dev/null`" || (cp etc/K.sh.dist K.sh && chmod +x K.sh && echo && echo NEW CONFIG FILE created at: && LS_COLORS="ex=40;92" CLICOLOR="Yes" ls $(shell ls --color > /dev/null 2>&1 && echo --color) -lah K.sh && echo)
packages:
@test -n "`command -v apt-get`" && sudo apt-get -y install g++ build-essential automake autoconf libtool libxml2 libxml2-dev zlib1g-dev python curl gzip screen doxygen graphviz \
|| (test -n "`command -v yum`" && sudo yum -y install gcc-c++ automake autoconf libtool libxml2 libxml2-devel python curl gzip screen) \
|| (test -n "`command -v brew`" && (xcode-select --install || :) && (brew install automake autoconf libxml2 zlib python curl gzip screen proctools doxygen graphviz || brew upgrade || :)) \
|| (test -n "`command -v pacman`" && $(SUDO) pacman --noconfirm -S --needed base-devel libxml2 zlib curl python gzip)
uninstall:
@$(foreach bin,$(addprefix /usr/local/bin/,$(notdir $(wildcard $(KBUILD)/bin/K-*))), $(SUDO) rm -v $(bin);)
system_install:
$(info Checking if sudo is allowed at /usr/local/bin.. $(shell $(SUDO) mkdir -p /usr/local/bin && $(SUDO) ls -ld /usr/local/bin > /dev/null 2>&1 && echo OK || echo ERROR))
$(info Checking if /usr/local/bin is already in your PATH.. $(if $(shell echo $$PATH | grep /usr/local/bin),OK))
$(if $(shell echo $$PATH | grep /usr/local/bin),,$(info $(subst ..,,$(subst Building ,,$(call STEP,Warning! you MUST add /usr/local/bin to your PATH!)))))
$(info )
$(info List of installed K binaries:)
@$(SUDO) cp -f $(wildcard $(KBUILD)/bin/K-$(KSRC)*) /usr/local/bin
@LS_COLORS="ex=40;92" CLICOLOR="Yes" ls $(shell ls --color > /dev/null 2>&1 && echo --color) -lah $(addprefix /usr/local/bin/,$(notdir $(wildcard $(KBUILD)/bin/K-$(KSRC)*)))
@echo
@$(SUDO) mkdir -p $(KHOME)
@$(SUDO) chown $(shell id -u) $(KHOME)
install:
@seq `expr $${COLUMNS:-21} / 2` | sed 's/.*/=/' | xargs echo \
&& echo " _ __" \
&& echo "| |/ / v$(MAJOR).$(MINOR).$(PATCH)+$(BUILD)" \
&& echo "| ' /" && echo "| . \\ Select your (beloved) architecture" \
&& echo "|_|\\_\\ to download pre-compiled binaries:" && echo \
&& echo $(CARCH) | tr ' ' "\n" | cat -n && echo && echo "(Hint! uname says \"`uname -sm`\")" && echo \
&& read -p "[$(shell seq -s \\ `echo $(CARCH) | wc -w`)]: " chost && (test -n "`echo $(CARCH) | cut -d ' ' -f$${chost}`" \
&& ($(MAKE) download CHOST=`echo $(CARCH) | cut -d ' ' -f$${chost}`) || (echo && echo Unknown option selected.. abort.))
docker: download
@sed -i "/Usage/,+$(shell expr `cat K.sh | wc -l` - 16)d" K.sh
reinstall:
@test -d .git && ((test -n "`git diff`" && (echo && echo !!Local changes will be lost!! press CTRL-C to abort. && echo && sleep 5) || :) \
&& git fetch && git merge FETCH_HEAD || (git reset FETCH_HEAD && git checkout .)) || curl -O krypto.ninja/Makefile
@$(MAKE) install
@echo && echo ..done! Please restart any running instance.
screen-help:
$(if $(shell test -z "`command -v screen`" && echo 1),$(warning Please install screen using the package manager of your system.);$(error screen command not found))
list: screen-help
@screen -list || :
restartall:
@$(MAKE) stopall -s
@sleep 3
@$(MAKE) startall -s
@$(MAKE) list -s
stopall:
ls -1 *.sh | cut -d / -f2 | cut -d \* -f1 | grep -v ^_ | xargs -I % $(MAKE) K=% stop -s
startall:
ls -1 *.sh | cut -d / -f2 | cut -d \* -f1 | grep -v ^_ | xargs -I % sh -c 'sleep 2;$(MAKE) K=% start -s'
@$(MAKE) list -s
restart:
@$(MAKE) stop -s
@sleep 3
@$(MAKE) start -s
@$(MAKE) list -s
stop: screen-help
@screen -XS $(K) quit && echo STOP $(K) DONE || :
start: screen-help
@test -n "`screen -list | grep "\.$(K) ("`" \
&& (echo $(K) is already running.. && screen -list) \
|| (screen -dmS $(K) ./$(K) && echo START $(K) DONE)
screen: screen-help
@test -n "`screen -list | grep "\.$(K) ("`" && ( \
echo Detach screen hotkey: holding CTRL hit A then D \
&& sleep 2 && screen -r $(K)) || screen -list || :
diff: .git
@_() { echo $$2 $$3 version: `git rev-parse $$1`; }; git remote update && _ @ Local running && _ @{u} Latest remote
@$(MAKE) changelog -s
upgrade: .git diff
@_() { git rev-parse $$1; }; test `_ @` != `_ @{u}` && $(MAKE) reinstall || :
changelog: .git
@_() { echo `git rev-parse $$1`; }; echo && git --no-pager log --graph --oneline @..@{u} && test `_ @` != `_ @{u}` || echo No need to upgrade, both versions are equal.
test-c:
ifndef KSRC
@$(foreach src,$(SOURCE),$(MAKE) -s $@ KSRC=$(src);)
else
@pvs-studio-analyzer credentials PVS-Studio Free FREE-FREE-FREE-FREE > /dev/null 2>&1
@pvs-studio-analyzer analyze -e src/bin/$(KSRC)/$(KSRC).test.h -e src/lib/Krypto.ninja-test.h -e $(KBUILD)/include --source-file test/static_code_analysis.cxx --cl-params $(KARGS) test/static_code_analysis.cxx 2> /dev/null && \
(echo $(KSRC) `plog-converter -a GA:1,2 -t tasklist -o report.tasks PVS-Studio.log | tail -n+8 | sed '/Total messages/d'` && cat report.tasks | sed '/Help: The documentation/d' && rm report.tasks) || :
-@egrep ₿ src test -lR | xargs -r sed -i 's/₿/u20BF/g'
-@clang-tidy -header-filter=$(realpath src) -checks='modernize-*, -modernize-use-trailing-return-type, -modernize-use-nodiscard, -clang-diagnostic-unknown-warning-option, -modernize-avoid-c-arrays, -modernize-return-braced-init-list' test/static_code_analysis.cxx -- $(subst ++23,++20,$(KARGS)) 2> /dev/null
-@egrep u20BF src test -lR | xargs -r sed -i 's/u20BF/₿/g'
@rm -f PVS-Studio.log > /dev/null 2>&1
endif
push:
@date=`date` && (git diff || :) && git status && read -p "KMOD: " KMOD \
&& git add . && git commit -S -m "$${KMOD}" \
&& ((KALL=1 $(MAKE) K release && git push) || git reset HEAD^1) \
&& echo "\007" && echo $${date} && date
MAJOR:
@sed -i "s/^\(MAJOR *=\).*$$/\1 $(shell expr $(MAJOR) + 1)/" Makefile
@sed -i "s/^\(MINOR *=\).*$$/\1 0/" Makefile
@sed -i "s/^\(PATCH *=\).*$$/\1 0/" Makefile
@sed -i "s/^\(BUILD *=\).*$$/\1 0/" Makefile
@$(MAKE) push
MINOR:
@sed -i "s/^\(MINOR *=\).*$$/\1 $(shell expr $(MINOR) + 1)/" Makefile
@sed -i "s/^\(PATCH *=\).*$$/\1 0/" Makefile
@sed -i "s/^\(BUILD *=\).*$$/\1 0/" Makefile
@$(MAKE) push
PATCH:
@sed -i "s/^\(PATCH *=\).*$$/\1 $(shell expr $(PATCH) + 1)/" Makefile
@sed -i "s/^\(BUILD *=\).*$$/\1 0/" Makefile
@$(MAKE) push
BUILD:
@sed -i "s/^\(BUILD *=\).*$$/\1 $(shell expr $(BUILD) + 1)/" Makefile
@$(MAKE) push
release:
ifdef KALL
unset KALL $(foreach chost,$(CARCH),&& $(MAKE) $@ CHOST=$(chost))
else ifndef KTARGZ
@$(MAKE) KTARGZ="K-$(MAJOR).$(MINOR).$(PATCH).$(BUILD)-$(KHOST).tar.gz" $@
else
@tar -cvzf $(KTARGZ) $(KBUILD)/bin/K-* $(KBUILD)/lib/K-* LICENSE COPYING README.md Makefile doc etc test src \
&& curl -s -n -H "Content-Type:application/octet-stream" -H "Authorization: token ${KRELEASE}" \
--data-binary "@$(PWD)/$(KTARGZ)" "https://uploads.github.com/repos/ctubio/Krypto-trading-bot/releases/$(shell curl -s \
https://api.github.com/repos/ctubio/Krypto-trading-bot/releases/latest | grep id | head -n1 | cut -d ' ' -f4 | cut -d ',' -f1 \
)/assets?name=$(KTARGZ)" && rm -v $(KTARGZ)
endif
md5: src
find src/lib -type f -exec md5sum "{}" + > src/lib.md5
asandwich:
@test "`whoami`" = "root" && echo OK || echo make it yourself!
.PHONY: all K $(SOURCE) hlep hepl help doc test src client client.o clean check lib download screen-help list screen start stop restart startall stopall restartall packages system_install uninstall install docker reinstall diff upgrade changelog test-c push MAJOR MINOR PATCH BUILD release md5 asandwich