create autogen.sh for convenience

git-svn-id: svn+q:///qpdf/trunk@943 71b93d88-0707-0410-a8cf-f5a4172ac649
This commit is contained in:
Jay Berkenbilt 2010-03-27 13:17:17 +00:00
parent e5fbae0a37
commit 75b55b7aad
3 changed files with 6 additions and 6 deletions

View File

@ -26,9 +26,7 @@ Release Reminders
* To construct a source distribution from a pristine checkout,
make_dist does the following:
aclocal -I m4
autoheader
autoconf
./autogen.sh
./configure --enable-doc-maintenance
make build_manual
make distclean

4
autogen.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/sh
aclocal -I m4
autoheader
autoconf

View File

@ -109,9 +109,7 @@ if ($version_error)
die "$whoami: version numbers are not consistent\n";
}
run("aclocal -I m4");
run("autoheader");
run("autoconf");
run("./autogen.sh");
run("./configure --enable-doc-maintenance");
run("make build_manual");
run("make distclean");