typo + new comment
[automake.git] / tests / cxxo.test
blob8fe584b366e5eddb9c4655e14db8ce1ad95fe9f4
1 #! /bin/sh
3 # Make sure C++ files are rewritten to ".o" and not just "o".
4 . $srcdir/defs || exit 1
6 cat >> configure.in << 'END'
7 AC_PROG_CXX
8 END
10 cat > Makefile.am << 'END'
11 sbin_PROGRAMS = anonymous
12 anonymous_SOURCES = doe.C
13 END
15 : > doe.C
17 $ACLOCAL || exit 1
18 $AUTOMAKE || exit 1
20 fgrep 'doe.$(OBJEXT)' Makefile.in