2015-01-26 21:17:24 +01:00
|
|
|
#!/bin/sh
|
|
|
|
# As seen on
|
|
|
|
# Autotools A Practitioner's Guide to GNU Autoconf,
|
|
|
|
# Automake, and Libtool by John Calcote
|
|
|
|
#
|
|
|
|
# autoreconf runs all the autotool configuration tools in the right order
|
|
|
|
# and will avoid regenerating files.
|
|
|
|
#
|
2015-01-31 20:43:25 +01:00
|
|
|
autoreconf --install --make # install missing files
|
2015-01-31 20:41:43 +01:00
|
|
|
# automake --add-missing --copy >/dev/null 2>&1 # add install-sh
|