blob: 98854f87a2f0c08303245705c5cfe2a7ee4a74ed [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 \
Christian Eglia7b0db92008-12-22 15:29:38 +000015 -o -name mdate-sh -o -name texinfo.tex \
Eitan Isaacson80be8fd2008-01-16 01:14:49 +000016 -o -name Makefile.in -o -name aclocal.m4 \) -print0 | xargs -0 rm -f
17
18echo Running autoreconf...
19autoreconf --force --install
20
21exit 0