summaryrefslogtreecommitdiffstats
path: root/src/service/autoconfiscate.sh
blob: 70a21a73517f17c2b55571b3f9e0788b581ec850 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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"