blob: ad86f5b671ce782b10f1c6e2512cec7340ad78c9 [file] [log] [blame]
Mesar Hameedd128f982013-10-31 00:25:04 +00001#!/bin/sh
2#
John Boyer53a9f7a2013-10-30 23:06:35 +00003# liblouis Braille Translation and Back-Translation
4# Library
5#
6# Based on the Linux screenreader BRLTTY, copyright (C) 1999-2006 by
7# The BRLTTY Team
8#
9# Copyright (C) 2004, 2005, 2006
10# ViewPlus Technologies, Inc. www.viewplus.com
11# and
12# abilitiessoft, Inc. www.abilitiessoft.com
13# All rights reserved
14#
Mesar Hameedd128f982013-10-31 00:25:04 +000015# Copyright (C) 2006--2013 by The Liblouis Team
16#
John Boyer53a9f7a2013-10-30 23:06:35 +000017# This file is free software; you can redistribute it and/or modify it
18# under the terms of the Lesser or Library GNU General Public License
19# (LGPL) as published by the
20# Free Software Foundation; either version 3, or (at your option) any
21# later version.
22#
23# This file is distributed in the hope that it will be useful, but
24# WITHOUT ANY WARRANTY; without even the implied warranty of
25# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26# Library GNU General Public License for more details.
27#
28# You should have received a copy of the Library GNU General Public
29# License along with this program; see the file COPYING. If not,
30# write to
31# the Free Software Foundation, 51 Franklin Street, Fifth Floor,
32# Boston, MA 02110-1301, USA.
33#
Eitan Isaacson80be8fd2008-01-16 01:14:49 +000034# autogen.sh glue for liblouis
35#
36# Requires: automake 1.9, autoconf 2.57+
37# Conflicts: autoconf 2.13
38set -e
39
40# Refresh GNU autotools toolchain.
41echo Cleaning autotools files...
42find -type d -name autom4te.cache -print0 | xargs -0 rm -rf \;
43find -type f \( -name missing -o -name install-sh -o -name mkinstalldirs \
44 -o -name depcomp -o -name ltmain.sh -o -name configure \
45 -o -name config.sub -o -name config.guess -o -name config.h.in \
Christian Eglia7b0db92008-12-22 15:29:38 +000046 -o -name mdate-sh -o -name texinfo.tex \
Eitan Isaacson80be8fd2008-01-16 01:14:49 +000047 -o -name Makefile.in -o -name aclocal.m4 \) -print0 | xargs -0 rm -f
48
49echo Running autoreconf...
50autoreconf --force --install
51
52exit 0