[go: up one dir, main page]

Menu

[dee19a]: / autogen.sh  Maximize  Restore  History

Download this file

17 lines (12 with data), 292 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
#!/bin/sh
set -e
test -f configure.ac || {
echo "Please, run this script in the top level project directory."
exit
}
libtoolize --force --copy
aclocal -I m4
autoconf
autoheader
automake --add-missing --force --copy
echo "For installation instructions, please, refer to file INSTALL."