summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-05-30 10:29:39 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-05-30 10:29:39 +0000
commitcabef4732da942c800c872f987170ac5473c22da (patch)
tree452d4df7ae2aeecf90f26b959ff544a27572421d
parentcab90bf98a9248326787f912779493c6a35b201b (diff)
downloadgnurl-cabef4732da942c800c872f987170ac5473c22da.tar.gz
gnurl-cabef4732da942c800c872f987170ac5473c22da.tar.bz2
gnurl-cabef4732da942c800c872f987170ac5473c22da.zip
made the automake line re-build from _all_ Makefile.am files in the source tree
-rwxr-xr-xbuildconf4
1 files changed, 3 insertions, 1 deletions
diff --git a/buildconf b/buildconf
index b6ec7e2d5..742d38a74 100755
--- a/buildconf
+++ b/buildconf
@@ -5,7 +5,9 @@ die(){
exit
}
-automake Makefile || die "The command 'automake Makefile' failed"
+MAKEFILES=`find . -name Makefile.am | sed 's/\.am$//'`
+
+automake $MAKEFILES || die "The command 'automake $MAKEFILES' failed"
aclocal || die "The command 'aclocal' failed"
autoheader || die "The command 'autoheader' failed"
autoconf || die "The command 'autoconf' failed"