blob: 23cbec33b402fe2c26749399fccfcf0944ebc3d6 [file] [log] [blame]
Eitan Isaacson80be8fd2008-01-16 01:14:49 +00001#!/bin/sh
2#
3# autogen.sh glue for liblouis
4#
5# Requires: automake 1.9, autoconf 2.57+
6# Conflicts: autoconf 2.13
7set -e
8
9# Refresh GNU autotools toolchain.
10echo Cleaning autotools files...
11find -type d -name autom4te.cache -print0 | xargs -0 rm -rf \;
12find -type f \( -name missing -o -name install-sh -o -name mkinstalldirs \
13 -o -name depcomp -o -name ltmain.sh -o -name configure \
14 -o -name config.sub -o -name config.guess -o -name config.h.in \
15 -o -name Makefile.in -o -name aclocal.m4 \) -print0 | xargs -0 rm -f
16
17echo Running autoreconf...
18autoreconf --force --install
19
20exit 0