diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-05-30 10:29:39 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-05-30 10:29:39 +0000 |
commit | cabef4732da942c800c872f987170ac5473c22da (patch) | |
tree | 452d4df7ae2aeecf90f26b959ff544a27572421d /buildconf | |
parent | cab90bf98a9248326787f912779493c6a35b201b (diff) |
made the automake line re-build from _all_ Makefile.am files in the source tree
Diffstat (limited to 'buildconf')
-rwxr-xr-x | buildconf | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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" |