-
-
Notifications
You must be signed in to change notification settings - Fork 64
/
Makefile
139 lines (112 loc) · 4.5 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
# Copyright 2017-2018 Dyne.org foundation
# SPDX-FileCopyrightText: 2017-2021 Dyne.org foundation
#
# SPDX-License-Identifier: AGPL-3.0-or-later
.PHONY: help
pwd := $(shell pwd)
# ARCH ?=$(shell uname -m)
PREFIX ?= /usr/local
# VERSION is set in build/init.mk
# DESTDIR is supported by install target
help:
@echo "✨ Welcome to the Zenroom build system"
@awk 'BEGIN {FS = ":.*##"; printf "🛟 Usage: make \033[36m<target>\033[0m\n👇🏽 List of targets:\n"} /^[a-zA-Z_0-9-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5)} ' Makefile
# help: ## 🛟 Show this help message
# @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf " \033[36m 👉 %-14s\033[0m %s\n", $$1, $$2}'
posix-exe: ## Dynamic executable for generic POSIX
$(MAKE) -f build/posix.mk
posix-lib: ## Dynamic library for generic POSIX
$(MAKE) -f build/posix.mk libzenroom.so LIBRARY=1
linux-exe: ## Dynamic executable for GNU/Linux
$(MAKE) -f build/posix.mk LINUX=1
linux-lib: ## Dynamic library for GNU/Linux
$(MAKE) -f build/posix.mk libzenroom.so LINUX=1 LIBRARY=1
musl: ## Static executable for Musl
$(MAKE) -f build/musl.mk
# bindings: ## Language binding for host platform
# $(MAKE) -f build/posix.mk deps zencode-exec
win-exe: ## Executable for Windows x86 64bit
$(MAKE) -f build/win-exe.mk
win-dll: ## Dynamic lib (DLL) for Windows x86 64bit
$(MAKE) -f build/win-dll.mk
osx-exe: ## Executable for Apple MacOS
$(MAKE) -f build/posix.mk OSX=1
@cp zenroom zenroom.command
@cp zencode-exec zencode-exec.command
osx-lib: ## Library for Apple MacOS native
$(MAKE) -f build/posix.mk libzenroom.dylib OSX=1 LIBRARY=1
# ios-arm64: # TODO: build/old/osx.mk Dynamic lib (dylib) for Apple iOS ARM64
# $(MAKE) -f build/apple-osx.mk ios-arm64
# ios-sim: ## TODO: build/old/osx.mk Dynamic lib (dylib) for Apple iOS simulator
# $(MAKE) -f build/apple-ios.mk ios-sim
node-wasm: ## WebAssembly (WASM) for Javascript in-browser (Emscripten)
yarn --cwd bindings/javascript
yarn --cwd bindings/javascript build
check: ## Run tests using the current binary executable build
meson setup meson/ build/ -D \
"tests=['determinism','vectors','lua','zencode','blockchain','bindings','api']"
ninja -C meson test
check-js: ## Run tests using the WASM build for Node
yarn --cwd bindings/javascript test
@sed 's@=ROOT=@'"${pwd}"'@' test/zexe_js_wrapper.sh > zenroom
@chmod +x zenroom
meson setup meson/ build/ -D "tests=['lua','zencode']"
ninja -C meson test
check-rs: test-exec := ${pwd}/test/zenroom_exec_rs/target/debug/zenroom_exec_rs
check-rs:
cargo build --manifest-path ${pwd}/test/zenroom_exec_rs/Cargo.toml
@echo -e "#!/bin/sh\n${test-exec} \$$@\n" > zenroom
@chmod +x zenroom
meson setup meson/ build/ -D "tests=['lua']"
ninja -C meson test
check-osx: ## Run tests using the OSX binary executable build
meson setup meson/ build/ -D \
"tests=['determinism','vectors','lua','zencode','bindings']"
ninja -C meson test
install: destbin=${DESTDIR}${PREFIX}/bin
install: destdocs=${DESTDIR}${PREFIX}/share/zenroom
install:
install -p -s src/zenroom ${destbin}/zenroom
install -p -s src/zencode-exec ${destbin}/zencode-exec
install -d ${destdocs}/docs
if [ -d docs/website/site ]; then cd docs/website/site && cp -ra * ${destdocs}/docs/; cd -; fi
if [ -d docs/Zencode_Whitepaper.pdf ]; then cp -ra docs/Zencode_Whitepaper.pdf ${destdocs}/; fi
cp README.md ${destdocs}/README.txt
cp LICENSE.txt ${destdocs}/LICENSE.txt
cp ChangeLog.md ${destdocs}/ChangeLog.txt
clean:
rm -rf ${pwd}/meson
$(MAKE) clean -C ${pwd}/lib/lua54/src
$(MAKE) clean -C ${pwd}/lib/pqclean
rm -rf ${pwd}/lib/milagro-crypto-c/build
$(MAKE) clean -C ${pwd}/src
if [ -d "bindings" ]; then $(MAKE) clean -C ${pwd}/bindings; fi
rm -f ${extras}/index.*
rm -rf ${pwd}/build/asmjs
rm -rf ${pwd}/build/wasm
rm -rf ${pwd}/build/rnjs
rm -rf ${pwd}/build/npm
rm -rf ${pwd}/build/demo
rm -f ${pwd}/build/swig_wrap.c
rm -f ${pwd}/.python-version
rm -f ${pwd}/src/zenroom
rm -f ${pwd}/lib/ed25519-donna/libed25519.a
rm -f ${pwd}/lib/ed25519-donna/*.o
rm -f ${pwd}/test/zencode-exec
rm -f ${pwd}/test/zenroom
clean-src:
rm -f src/zen_ecdh_factory.c src/zen_ecp_factory.c src/zen_big_factory.c
$(MAKE) clean -C src
# -------------------
# Parsing the documentation
needed-docs:
cd ${pwd}/docs/doc_needed; ./run.sh
# -------------------
# Linux benchamrk
linux-benchmark:
./test/benchmark/all_tests/bench.sh
clean-test:
git clean -f docs
git restore docs
rm -f test/zenroom
rm -f test/zencode-exec