#!/bin/sh
# Generates ./configure, Makefile.in's and tools

# Copyright (C) 2007, 2008  Sylvain Beucler

# Copying and distribution of this file, with or without modification,
# are permitted in any medium without royalty provided the copyright
# notice and this notice are preserved.


# Stop at first error:
set -e
# Print commands:
set -x

if [ "x$1" = xclean ]; then
    test ! -f Makefile || make maintainer-clean || true

    # Generated by aclocal.
    rm -f aclocal.m4
    # Generated by autoheader.
    rm -f config.h.in
    # Generated by autoconf.
    rm -f configure
    rm -rf autom4te.cache/
    # Generated or brought in by automake.
    find -name "Makefile.in" | xargs -r rm
    find autotools/ -type l | xargs -r rm
    rm -f INSTALL
    # Generated or brought in by intltoolize
    rm -f po/Makefile.in.in
    exit
fi

# Enable no-portability to disable GNU make extensions warnings, such as $(shell)
#if autoreconf --install --symlink --warnings=all --warnings=no-portability $*
if autoreconf --install --symlink --warnings=all $* && intltoolize --force
then echo "You now can run ./configure"
else echo "*** Error: please check the messages above. ***"
fi
