summaryrefslogtreecommitdiffstats
path: root/src/service/autoconfiscate.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/service/autoconfiscate.sh')
-rwxr-xr-xsrc/service/autoconfiscate.sh39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/service/autoconfiscate.sh b/src/service/autoconfiscate.sh
new file mode 100755
index 0000000..70a21a7
--- /dev/null
+++ b/src/service/autoconfiscate.sh
@@ -0,0 +1,39 @@
+#!/bin/sh
+# $Id: autoconfiscate.sh,v 1.2 2009/05/22 03:50:48 tyreld Exp $
+# ============================================================================
+# (C) Copyright IBM Corp. 2005, 2009
+#
+# THIS FILE IS PROVIDED UNDER THE TERMS OF THE ECLIPSE PUBLIC LICENSE
+# ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THIS FILE
+# CONSTITUTES RECIPIENTS ACCEPTANCE OF THE AGREEMENT.
+#
+# You can obtain a current copy of the Eclipse Public License from
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Author: Viktor Mihajlovski, <mihajlov@de.ibm.com>
+# Contributors: Dr. Gareth S. Bestor, <bestorga@us.ibm.com>
+# Last Updated: April 15, 2005
+# Description:
+# Setup autoconf/automake build environment for package.
+# Run this script as the first step of building this package.
+# ============================================================================
+# NO CHANGES SHOULD BE NECESSARY TO THIS FILE
+# ============================================================================
+
+echo "Running aclocal ..." &&
+aclocal --force &&
+
+echo "Running autoheader ..." &&
+autoheader --force &&
+
+echo "Running libtool ..." &&
+libtoolize --force &&
+
+echo "Running automake ..." &&
+automake --add-missing --force-missing &&
+
+echo "Running autoconf ..." &&
+autoconf --force &&
+
+echo "You may now run ./configure"
+