[go: up one dir, main page]

Menu

[r213]: / gizmod3 / autogen.sh  Maximize  Restore  History

Download this file

24 lines (23 with data), 540 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
echo "Note that you need to have the Boost autoconf macros"
echo "installed in order to autogen. All of the autogen"
echo "dependencies are store in dependencies/m4 -- these"
echo "usually get put into /usr/share/aclocal"
echo
echo "Auto-generating configure and make..."
echo "libtoolizing..."
libtoolize --force
echo
echo -n "running aclocal..."
aclocal
echo
echo -n "running automake..."
automake -a
echo
echo -n "running autoheader..."
autoheader
echo
echo -n "running autoconf..."
autoconf
echo
echo "Auto-generation complete."
echo