Run freetype-config with --libs instead of
[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
4 #   National Institute of Advanced Industrial Science and Technology (AIST)
5 #   Registration Number H15PRO112
6 # See the end for copying conditions.
7
8 echo "Cleaning up old files..."
9 rm -rf INSTALL aclocal.m4 autom4te.cache config.guess. config.sub install-sh ltmain.sh missing mkinstalldirs libtool
10 echo "Running libtoolize..."
11 libtoolize --automake
12 echo "Running aclocal..."
13 aclocal
14 echo "Running autoheader..."
15 autoheader
16 echo "Running automake..."
17 automake -a
18 echo "Running autoconf..."
19 autoconf
20 echo "The remaining steps to install this library are:"
21 echo "  % ./configure"
22 echo "  % make"
23 echo "  % make install"
24
25 # Copyright (C) 2003, 2004
26 #   National Institute of Advanced Industrial Science and Technology (AIST)
27 #   Registration Number H15PRO112
28
29 # This file is part of the m17n library.
30
31 # The m17n library is free software; you can redistribute it and/or
32 # modify it under the terms of the GNU Lesser General Public License
33 # as published by the Free Software Foundation; either version 2.1 of
34 # the License, or (at your option) any later version.
35
36 # The m17n library is distributed in the hope that it will be useful,
37 # but WITHOUT ANY WARRANTY; without even the implied warranty of
38 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
39 # Lesser General Public License for more details.
40
41 # You should have received a copy of the GNU Lesser General Public
42 # License along with the m17n library; if not, write to the Free
43 # Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
44 # 02111-1307, USA.