source: vendor/automake/1.4-p6/tests/cxxnoc.test

Last change on this file was 3124, checked in by bird, 18 years ago

automake 1.4-p6

File size: 340 bytes
Line 
1#! /bin/sh
2
3# Test to make sure pure C++ sources don't include C-specific code.
4
5. $srcdir/defs || exit 1
6
7cat >> configure.in << 'END'
8AC_PROG_CXX
9END
10
11cat > Makefile.am << 'END'
12sbin_PROGRAMS = anonymous
13anonymous_SOURCES = doe.C jane.C
14END
15
16: > doe.C
17: > jane.C
18
19$AUTOMAKE || exit 1
20
21grep CC Makefile.in | grep -v MKDEP && exit 1
22exit 0
Note: See TracBrowser for help on using the repository browser.