Mesar Hameed | d128f98 | 2013-10-31 00:25:04 +0000 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | # |
Christian Egli | 9bd6be2 | 2013-10-31 10:38:55 +0000 | [diff] [blame] | 3 | # Copyright 2008 Eitan Isaacson |
| 4 | # Copyright 2008 Christian Egli |
| 5 | # Copyright 2012 Michael Whapples |
John Boyer | 53a9f7a | 2013-10-30 23:06:35 +0000 | [diff] [blame] | 6 | # |
Christian Egli | 9bd6be2 | 2013-10-31 10:38:55 +0000 | [diff] [blame] | 7 | # This file is part of Liblouis. |
John Boyer | 53a9f7a | 2013-10-30 23:06:35 +0000 | [diff] [blame] | 8 | # |
Christian Egli | 9bd6be2 | 2013-10-31 10:38:55 +0000 | [diff] [blame] | 9 | # Liblouis is free software: you can redistribute it and/or modify it |
| 10 | # under the terms of the GNU Lesser General Public License as |
| 11 | # published by the Free Software Foundation, either version 3 of the |
| 12 | # License, or (at your option) any later version. |
John Boyer | 53a9f7a | 2013-10-30 23:06:35 +0000 | [diff] [blame] | 13 | # |
Christian Egli | 9bd6be2 | 2013-10-31 10:38:55 +0000 | [diff] [blame] | 14 | # Liblouis is distributed in the hope that it will be useful, but |
| 15 | # WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 17 | # Lesser General Public License for more details. |
Mesar Hameed | d128f98 | 2013-10-31 00:25:04 +0000 | [diff] [blame] | 18 | # |
Christian Egli | 9bd6be2 | 2013-10-31 10:38:55 +0000 | [diff] [blame] | 19 | # You should have received a copy of the GNU Lesser General Public |
| 20 | # License along with Liblouis. If not, see |
| 21 | # <http://www.gnu.org/licenses/>. |
John Boyer | 53a9f7a | 2013-10-30 23:06:35 +0000 | [diff] [blame] | 22 | # |
Eitan Isaacson | 80be8fd | 2008-01-16 01:14:49 +0000 | [diff] [blame] | 23 | # autogen.sh glue for liblouis |
| 24 | # |
| 25 | # Requires: automake 1.9, autoconf 2.57+ |
| 26 | # Conflicts: autoconf 2.13 |
| 27 | set -e |
| 28 | |
| 29 | # Refresh GNU autotools toolchain. |
| 30 | echo Cleaning autotools files... |
| 31 | find -type d -name autom4te.cache -print0 | xargs -0 rm -rf \; |
| 32 | find -type f \( -name missing -o -name install-sh -o -name mkinstalldirs \ |
| 33 | -o -name depcomp -o -name ltmain.sh -o -name configure \ |
| 34 | -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] | 35 | -o -name mdate-sh -o -name texinfo.tex \ |
Eitan Isaacson | 80be8fd | 2008-01-16 01:14:49 +0000 | [diff] [blame] | 36 | -o -name Makefile.in -o -name aclocal.m4 \) -print0 | xargs -0 rm -f |
| 37 | |
| 38 | echo Running autoreconf... |
| 39 | autoreconf --force --install |
| 40 | |
| 41 | exit 0 |