Edit

kc3-lang/automake/tests/suffix.test

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1999-11-21 21:35:41
    Hash : 9ae48df8
    Message : Merged from user-dep-gen-branch.

  • tests/suffix.test
  • #! /bin/sh
    
    # Make sure a suffix rule for C compilation is produced.
    
    . $srcdir/defs || exit 1
    
    cat >> configure.in << 'END'
    AC_PROG_CC
    END
    
    cat > Makefile.am << 'END'
    noinst_PROGRAMS = foo
    END
    
    $AUTOMAKE -i || exit 1
    
    grep '^\.c\.o' Makefile.in > /dev/null || exit 1
    
    $AUTOMAKE || exit 1
    grep '^\.c\.o' Makefile.in > /dev/null || exit 1