forked from bondhugula/pluto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
autogen.sh
executable file
·48 lines (36 loc) · 863 Bytes
/
autogen.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
#!/usr/bin/env bash
export BASE=`pwd`
# ------------------------------------------------
# (Re)Generate autotools files
# ------------------------------------------------
echo -e "\n*** Running autotools on pluto ***"
autoreconf -vi
echo -e "\n*** Running autotools on isl ***"
(cd isl; ./autogen.sh)
echo -e "\n*** Running autotools on cloog-isl ***"
cd cloog-isl
./autogen.sh
cd ..
echo -e "\n*** Running autotools on piplib ***"
cd piplib
./autogen.sh
cd ..
echo -e "\n*** Running autotools on polylib ***"
cd polylib
autoreconf -vi
cd ..
echo -e "\n*** Running autotools on openscop ***"
cd openscop
autoreconf -vi
cd ..
echo -e "\n*** Running autotools on candl ***"
cd candl
autoreconf -vi
cd ..
echo -e "\n*** Running autotools on clan ***"
cd clan
./autogen.sh
cd ..
echo -e "\n*** Running autotools on pet ***"
(cd pet && ./autogen.sh)
cd ..