Edit

kc3-lang/automake/tests/yacc.test

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1996-08-11 18:02:21
    Hash : 4c809afe
    Message : Better C++ support

  • tests/yacc.test
  • #! /bin/sh
    
    # Test to make sure intermediate .c file is built from yacc source.
    # Bug from Thomas Morgan.
    
    . $srcdir/defs || exit 1
    
    cat >> configure.in << 'END'
    AC_PROG_YACC
    END
    
    cat > Makefile.am <<'END'
    bin_PROGRAMS = zardoz
    zardoz_SOURCES = zardoz.y
    END
    
    $AUTOMAKE || exit 1
    
    grep 'zardoz.c' Makefile.in