aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap28
1 files changed, 0 insertions, 28 deletions
diff --git a/bootstrap b/bootstrap
deleted file mode 100755
index 218e08d..0000000
--- a/bootstrap
+++ /dev/null
@@ -1,28 +0,0 @@
-#! /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.
-
-# After executing this script the project can be build by executing:
-# ./configure
-# make
-# make install
-
-find . -exec chmod go-w '{}' \;
-
-aclocal
-autoheader
-touch config.h.in
-automake
-autoconf
-./configure
-make clean
-
-rm config.status
-rm libtool
-rm -r autom4te.cache/
-
-