Support more C++ file extensions for MSVC in the compile script.
[platform/upstream/automake.git] / tests / pr300-ltlib.test
1 #! /bin/sh
2 # Copyright (C) 2002, 2007, 2008, 2009, 2010 Free Software Foundation,
3 # Inc.
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2, or (at your option)
8 # any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18 # Make sure that installing subdirectory libtool libraries works.
19 # PR/300
20
21 required='libtoolize gcc'
22 . ./defs || Exit 1
23
24 set -e
25
26 cat >> configure.in << 'END'
27 AC_PROG_CC
28 AC_PROG_LIBTOOL
29 AC_OUTPUT
30 END
31
32 cat > Makefile.am << 'END'
33 lib_LTLIBRARIES = subdir/liba.la
34 subdir_liba_la_SOURCES = a.c
35
36 nobase_lib_LTLIBRARIES = subdir/libb.la
37 subdir_libb_la_SOURCES = a.c
38 END
39
40 cat > a.c << 'END'
41 int i = 3;
42 END
43
44 ## A rule in the Makefile should create subdir
45 # mkdir subdir
46
47 libtoolize
48 $ACLOCAL
49 $AUTOCONF
50 $AUTOMAKE --copy --add-missing
51 ./configure --prefix "`pwd`/inst"
52 $MAKE V=1 >stdout
53 cat stdout
54
55 grep 'liba.la .*-rpath .*lib' stdout
56 grep 'liba.la .*-rpath .*lib/subdir' stdout && Exit 1
57 grep 'libb.la .*-rpath .*lib/subdir' stdout
58
59 test -f subdir/liba.la
60 test -f subdir/libb.la
61
62 $MAKE install 2>stderr || { cat stderr >&2; Exit 1; }
63 cat stderr >&2
64 grep 'remember.*--finish' stderr && Exit 1
65
66 test -f inst/lib/liba.la
67 test -f inst/lib/subdir/libb.la
68
69 $MAKE uninstall
70
71 test -f inst/lib/liba.la && Exit 1
72 test -f inst/lib/subdir/libb.la && Exit 1
73
74 $MAKE install-strip
75
76 test -f inst/lib/liba.la
77 test -f inst/lib/subdir/libb.la