Mesar Hameed | d128f98 | 2013-10-31 00:25:04 +0000 | [diff] [blame^] | 1 | #!/bin/sh |
| 2 | # |
John Boyer | 53a9f7a | 2013-10-30 23:06:35 +0000 | [diff] [blame] | 3 | # 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 Hameed | d128f98 | 2013-10-31 00:25:04 +0000 | [diff] [blame^] | 15 | # Copyright (C) 2006--2013 by The Liblouis Team |
| 16 | # |
John Boyer | 53a9f7a | 2013-10-30 23:06:35 +0000 | [diff] [blame] | 17 | # 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 Isaacson | 80be8fd | 2008-01-16 01:14:49 +0000 | [diff] [blame] | 34 | # autogen.sh glue for liblouis |
| 35 | # |
| 36 | # Requires: automake 1.9, autoconf 2.57+ |
| 37 | # Conflicts: autoconf 2.13 |
| 38 | set -e |
| 39 | |
| 40 | # Refresh GNU autotools toolchain. |
| 41 | echo Cleaning autotools files... |
| 42 | find -type d -name autom4te.cache -print0 | xargs -0 rm -rf \; |
| 43 | find -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 Egli | a7b0db9 | 2008-12-22 15:29:38 +0000 | [diff] [blame] | 46 | -o -name mdate-sh -o -name texinfo.tex \ |
Eitan Isaacson | 80be8fd | 2008-01-16 01:14:49 +0000 | [diff] [blame] | 47 | -o -name Makefile.in -o -name aclocal.m4 \) -print0 | xargs -0 rm -f |
| 48 | |
| 49 | echo Running autoreconf... |
| 50 | autoreconf --force --install |
| 51 | |
| 52 | exit 0 |