Blame autogen.sh

Packit daac2c
#!/bin/sh
Packit daac2c
# autogen.sh -- shell script to build libotf from CVS.
Packit daac2c
# Copyright (C) 2003, 2004
Packit daac2c
#   National Institute of Advanced Industrial Science and Technology (AIST)
Packit daac2c
#   Registration Number H15PRO167
Packit daac2c
# See the end for copying conditions.
Packit daac2c
Packit daac2c
echo "Running libtoolize..."
Packit daac2c
libtoolize --automake
Packit daac2c
echo "Running aclocal..."
Packit daac2c
aclocal
Packit daac2c
echo "Running autoheader..."
Packit daac2c
autoheader
Packit daac2c
echo "Running automake..."
Packit daac2c
automake -a -c
Packit daac2c
echo "Running autoconf..."
Packit daac2c
autoconf
Packit daac2c
echo "The remaining steps to install this library are:"
Packit daac2c
echo "  % ./configure"
Packit daac2c
echo "  % make"
Packit daac2c
echo "  % make install"
Packit daac2c
Packit daac2c
# Copyright (C) 2003, 2004
Packit daac2c
#   National Institute of Advanced Industrial Science and Technology (AIST)
Packit daac2c
#   Registration Number H15PRO167
Packit daac2c
Packit daac2c
# This file is part of libotf.
Packit daac2c
Packit daac2c
# Libotf is free software; you can redistribute it and/or modify it
Packit daac2c
# under the terms of the GNU Lesser General Public License as published
Packit daac2c
# by the Free Software Foundation; either version 2.1 of the License, or
Packit daac2c
# (at your option) any later version.
Packit daac2c
Packit daac2c
# Libotf is distributed in the hope that it will be useful, but WITHOUT
Packit daac2c
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
Packit daac2c
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
Packit daac2c
# License for more details.
Packit daac2c
Packit daac2c
# You should have received a copy of the GNU Lesser General Public
Packit daac2c
# License along with this library, in a file named COPYING; if not,
Packit daac2c
# write to the Free Software Foundation, Inc., 59 Temple Place, Suite
Packit daac2c
# 330, Boston, MA 02111-1307, USA