summaryrefslogtreecommitdiff
path: root/autogen.sh
blob: d4c6d40cc8d4d34522de0d3428d48651e18633d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
# you can either set the environment variables AUTOCONF and AUTOMAKE
# to the right versions, or leave them unset and get the RedHat 7.3 defaults

aclocal -I m4 -I common/m4
libtoolize --copy --force
autoheader
autoconf
automake --add-missing --copy --foreign

echo "Now type 'make' to compile $package."