-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathprepare.sh
More file actions
executable file
·32 lines (28 loc) · 851 Bytes
/
prepare.sh
File metadata and controls
executable file
·32 lines (28 loc) · 851 Bytes
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
#!/bin/bash
############################################################
# PROJECT : MALT (MALoc Tracker)
# DATE : 11/2025
# LICENSE : CeCILL-C
# FILE : prepare.sh
#-----------------------------------------------------------
# AUTHOR : Sébastien Valat (INRIA) - 2025
############################################################
###########################################################
set -e
set -u
set -x
###########################################################
# prepare webview client (download & pre-build)
cd ./src/webview/client-files
./prepare.sh
cd -
###########################################################
# download jemalloc sources to embed them
cd ./extern-deps/jemalloc/
./prepare.sh
cd -
###########################################################
# pre-build the doc
cd ./doc
./prepare.sh
cd -