-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sh
60 lines (50 loc) · 910 Bytes
/
build.sh
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
#/bin/sh
###
# env variables
export DECSYSHOME=$PWD/
mkdir -p lib/ bin/
###
# ThirdParty
echo compiling paradiseo-eo components
echo =================================
echo
cd $DECSYSHOME/ThirdParty/paradiseo-eo/src
make $@
echo
echo
###
# utilities
echo compiling utility routines
echo ==========================
echo
cd $DECSYSHOME/src/util
make $@
echo
echo
###
# main components of decsion systems
echo compiling decision tree components
echo ==================================
echo
cd $DECSYSHOME/src/main
make $@
echo
echo
###
# main components of decsion systems
echo compiling flags library
echo =======================
echo
cd $DECSYSHOME/src/interactivemenus/flagslib
make $@
echo
echo
###
# main components of decsion systems
echo compiling menus library
echo =======================
echo
cd $DECSYSHOME/src/interactivemenus/menuslib
make $@
echo
echo