From d67d96005654f721aa566662304923f401017dfb Mon Sep 17 00:00:00 2001 From: Art Haas Date: Thu, 14 Jun 2007 09:06:32 -0500 Subject: [PATCH] add 'bootstrap' script --- bootstrap | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 bootstrap diff --git a/bootstrap b/bootstrap new file mode 100755 index 0000000..f7cc6c6 --- /dev/null +++ b/bootstrap @@ -0,0 +1,16 @@ +#!/bin/sh + +# +# trivial script to prepare the tree for building +# + +echo "running libtoolize..." +libtoolize --copy --force --automake +echo "running aclocal..." +aclocal +echo "running autoconf..." +autoconf +echo "running automake..." +automake --include-deps --add-missing --copy +echo +echo You are now ready to run ./configure. Enjoy! -- 2.11.4.GIT