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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
#!/bin/bash
#
# $Id: autogen.sh,v 1.6 2008/07/15 20:33:31 hartwork Exp $
#
# CppTest - A C++ Unit Testing Framework
# Copyright (c) 2003 Niklas Lundell
#
# ---
#
# 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 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
# License along with this library; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
#
# ---
# --- Initialization of libtool
echo "Creating library tools..."
LIBTOOLIZE=libtoolize
if glibtoolize --version &>/dev/null ; then
LIBTOOLIZE=glibtoolize
fi
${LIBTOOLIZE} --automake --copy --force --verbose
# --- Creation of 'aclocal.m4'
# The autotools are not backwards compatible with previous releases.
# Therefore, it often outputs non-important warnings that will be
# ignore and suppressed.
#
echo "Creating macros..."
aclocal $aclocal_flags 2>&1 \
| grep -v 'warning: underquoted definition of' \
| grep -v 'Extending.aclocal' \
| grep -v 'Extending%20aclocal'
# --- Initialization of automake
echo "Creating config/config.h.in..."
autoheader
echo "Creating Makefile templates..."
touch README
automake --gnu --add-missing --copy
# --- Initialization of autoconf
echo "Creating 'configure'..."
autoconf
# --- Finished...
echo -e "\nRun: ./configure [OPTIONS]; make; make install\n"
|