#!/bin/bash
#                                               -*- Shell-script -*-
#
#  Copyright (C) 2005-2013 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 3 of the License, or
#  (at your option) any later version.
#
#  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
#  along with this library.  If not, see <http://www.gnu.org/licenses/>.
#
#  @author dutka
#  @date   2007-10-05 12:49:51 +0200 (ven, 05 oct 2007)
#  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
