#! /bin/sh
#
# auto-setup
#
# Copyright (C) 2003 Ed Cogburn <ecogburn@xtn.net>
#
# This file is part of the program "d: The Directory Lister".
#
# "d: The Directory Lister" is free software; you can redistribute it and/or modify it under the terms of the GNU General Public
# License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
#
# "d: The Directory Lister" 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License along with "d: The Directory Lister" in a file named "COPYING".
# If not, visit their website at http://www.gnu.org for a copy, or request a copy by writing to:
#     Free Software Foundation, Inc.
#     59 Temple Place, Suite 330
#     Boston, MA 02111-1307 USA
#
#
echo "Running aclocal......"
aclocal
echo "Running autoheader..."
autoheader
echo "Running automake....."
automake --foreign --add-missing --copy
echo "Running autoconf....."
autoconf
echo "Done, now run configure."
echo
echo "Note that the only configure option specific to 'd' is '--enable-debug'."
echo
