compile: implement library search to support MSVC static linking
[automake.git] / tests / check5.test
blob7113e1b3e637c6a85ecec43193e0368a2bdbf02f
1 #! /bin/sh
2 # Copyright (C) 2006, 2007, 2008, 2009, 2010 Free Software Foundation,
3 # Inc.
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.
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 # Test TESTS = $(check_PROGRAMS)
20 . ./defs || Exit 1
22 set -e
24 cat >> configure.in << 'END'
25 AC_PROG_CC
26 AC_OUTPUT
27 END
29 cat > Makefile.am << 'END'
30 check_PROGRAMS = one two
31 TESTS = $(check_PROGRAMS)
32 check-local:
33 test -f one$(EXEEXT)
34 test -f two$(EXEEXT)
35 touch ok
36 print-tests:
37 echo BEG: $(TESTS) :END
38 END
40 $ACLOCAL
41 $AUTOCONF
42 $AUTOMAKE -a
44 cat >one.c <<END
45 int main() { return 0; }
46 END
47 cp one.c two.c
49 ./configure
50 $MAKE check
51 test -f ok
52 EXEEXT=.bin $MAKE -e print-tests >output
53 cat output
54 # No am__EXEEXT_* variable is needed.
55 grep '_EXEEXT_[1-9]' Makefile.in && Exit 1
56 grep 'BEG: one.bin two.bin :END' output
57 $FGREP 'TESTS = $(check_PROGRAMS)' Makefile.in