2 # Copyright (C) 2001, 2002, 2004, 2005, 2006, 2007, 2008 Free Software
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)
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.
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/>.
18 # Make sure nobase_* works for libtool libraries and programs as well.
19 # This is just the libtool equivalent of nobase.test, split
20 # up for greater exposure of nobase.test.
22 required
='libtoolize gcc'
27 cat >> configure.
in <<'EOF'
33 cat > Makefile.am
<< 'EOF'
34 fooexecdir
= $
(prefix
)/foo
35 fooexec_LTLIBRARIES
= sub
/libbase.la
36 nobase_fooexec_LTLIBRARIES
= sub
/libnobase.la
37 fooexec_PROGRAMS
= sub
/base
38 nobase_fooexec_PROGRAMS
= sub
/nobase
39 sub_libbase_la_SOURCES
= source2.c
40 sub_libnobase_la_SOURCES
= source2.c
41 sub_base_SOURCES
= source.c
42 sub_nobase_SOURCES
= source.c
44 test-install-data
: install-data
45 test ! -f inst
/foo
/sub
/libnobase.la
46 test ! -f inst
/foo
/libbase.la
48 test-install-exec
: install-exec
49 test -f inst
/foo
/sub
/libnobase.la
50 test ! -f inst
/foo
/libnobase.la
51 test -f inst
/foo
/libbase.la
58 main (int argc, char *argv[])
71 .
/configure
--prefix "`pwd`/inst" --program-prefix=p
74 $MAKE test-install-data
75 $MAKE test-install-exec
78 test `find inst/foo -type f -print | wc -l` = 0
82 # Likewise, in a VPATH build.
88 ..
/configure
--prefix "`pwd`/inst" --program-prefix=p
90 $MAKE test-install-data
91 $MAKE test-install-exec
93 test `find inst/foo -type f -print | wc -l` = 0