#!/bin/bash
#                                               -*- Shell-script -*-
#
#  (C) Copyright 2005-2010 EDF-EADS-Phimeca
#
#  This library is free software; you can redistribute it and/or
#  modify it under the terms of the GNU Lesser General Public
#  License as published by the Free Software Foundation; either
#  version 2.1 of the License.
#
#  This library is distributed in the hope that it will be useful
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
#  Lesser General Public License for more details.
#
#  You should have received a copy of the GNU Lesser General Public
#  License along with this library; if not, write to the Free Software
#  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
#
#  @author: $LastChangedBy: dutka $
#  @date:   $LastChangedDate: 2007-10-05 12:49:51 +0200 (ven, 05 oct 2007) $
#  Id:      $Id: bootstrap 555 2007-10-05 10:49:51Z dutka $
#
#  This file initializes the building process of the project.
#  Call it before trying to use configure script (that normally should not
#  even exists at first).
#

touch NEWS README AUTHORS ChangeLog && \
aclocal -I m4 && \
libtoolize --automake --copy && \
autoconf && \
automake --add-missing  --copy
