aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjjako <jjako>2004-01-13 07:18:53 +0000
committerjjako <jjako>2004-01-13 07:18:53 +0000
commit7ca679d1f8f9204f3a694724dfb6489456daace9 (patch)
tree80d888c9375db825496e35a0def935cad4d75b89
parent782af56836f63df629827580fbac004078da359f (diff)
Allow bootstrap to remove temp files
-rwxr-xr-xbootstrap13
1 files changed, 13 insertions, 0 deletions
diff --git a/bootstrap b/bootstrap
index bc73f99..fe63878 100755
--- a/bootstrap
+++ b/bootstrap
@@ -1,5 +1,12 @@
#! /bin/sh
+# bootstrap - Execute relevant autotools scripts
+
+# After running this script the directory is ready for distribution as
+# a tarball.
+
+# It should also be executed before checking milestones into CVS.
+
aclocal
autoheader
touch config.h.in
@@ -7,3 +14,9 @@ automake
autoconf
./configure
make clean
+
+rm config.status
+rm libtool
+rm -r autom4te.cache/
+rm aclocal.m4
+