* depcomp (ddashmd): Removed case.
[automake.git] / tests / xsource.test
blob566944422f25b6f117d20a44baf5368489d46607
1 #! /bin/sh
3 # Test to make sure multiple source files with the same object
4 # file causes error.
6 . $srcdir/defs || exit 1
8 cat > Makefile.am << 'END'
9 bin_PROGRAMS = zardoz
10 zardoz_SOURCES = z.c x/z.c
11 END
13 cat >> configure.in << 'END'
14 AC_PROG_CC
15 END
17 mkdir x
19 : > z.c
20 : > x/z.c
22 $AUTOMAKE && exit 1
23 exit 0