* lib/am/depend.am (distclean-depend): Erase %DEPDIRS%, not $(DEPDIRS).
[platform/upstream/automake.git] / tests / implicit.test
1 #! /bin/sh
2
3 # Test to make sure implicit .o's are listed as appropriate.  Report
4 # from Henrik Frystyk Nielsen.
5
6 . $srcdir/defs || exit 1
7
8 cat >> configure.in << 'END'
9 AC_PROG_CC
10 END
11
12 cat > Makefile.am << 'END'
13 noinst_PROGRAMS = libapp_1
14 END
15
16 $ACLOCAL || exit 1
17 $AUTOMAKE || exit 1
18
19 grep '^libapp_1_OBJECTS' Makefile.in | fgrep '.$(OBJEXT)'