Update copyright years
[m17n/m17n-lib.git] / bootstrap.sh
1 #!/bin/sh
2 # bootstrap.sh -- shell script to build the m17n library from CVS.
3 # Copyright (C) 2003, 2004, 2005, 2006, 2009, 2010, 2011, 2012
4 #   National Institute of Advanced Industrial Science and Technology (AIST)
5 #   Registration Number H15PRO112
6
7 # This file is part of the m17n library.
8
9 # The m17n library is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU Lesser General Public License
11 # as published by the Free Software Foundation; either version 2.1 of
12 # the License, or (at your option) any later version.
13
14 # The m17n library is distributed in the hope that it will be useful,
15 # but 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.
18
19 # You should have received a copy of the GNU Lesser General Public
20 # License along with the m17n library; if not, write to the Free
21 # Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 # Boston, MA 02110-1301, USA.
23
24 echo "Cleaning up old files..."
25 rm -rf INSTALL aclocal.m4 autom4te.cache config.guess. config.rpath config.sub install-sh libtool ltmain.sh missing mkinstalldirs intl/[D-Za-z]* m4/[a-z]*
26
27 echo "Running autoreconf -v -f -i"
28 autoreconf -v -f -i
29 if [ ! -f po/Makevars ] ; then
30     echo "Copying po/Makevars.template to po/Makevars"
31     cp po/Makevars.template po/Makevars
32 fi
33 echo "The remaining steps to install this library are:"
34 echo "  % ./configure"
35 echo "  % make"
36 echo "  % make install"