fix warnings
[pluto.git] / autogen.sh
blob1bbff0ac8eea3b138e1ab7cea460c519460d7bc6
1 #!/usr/bin/env bash
3 export BASE=`pwd`
5 # ------------------------------------------------
6 # (Re)Generate autotools files
7 # ------------------------------------------------
9 echo -e "\n*** Running autotools on pluto ***"
10 autoreconf -vi
12 echo -e "\n*** Running autotools on isl ***"
13 (cd isl; ./autogen.sh)
15 echo -e "\n*** Running autotools on cloog-isl ***"
16 cd cloog-isl
17 ./autogen.sh
18 cd ..
20 echo -e "\n*** Running autotools on piplib ***"
21 cd piplib
22 ./autogen.sh
23 cd ..
25 echo -e "\n*** Running autotools on polylib ***"
26 cd polylib
27 autoreconf -vi
28 cd ..
30 echo -e "\n*** Running autotools on openscop ***"
31 cd openscop
32 autoreconf -vi
33 cd ..
35 echo -e "\n*** Running autotools on candl ***"
36 cd candl
37 autoreconf -vi
38 cd ..
40 echo -e "\n*** Running autotools on clan ***"
41 cd clan
42 ./autogen.sh
43 cd ..
45 cd ..