Edit

kc3-lang/automake/tests/interp.test

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1996-08-27 05:19:33
    Hash : 75349f4b
    Message : Do variable interpolation

  • tests/interp.test
  • #! /bin/sh
    
    # Test to make sure variable interpolation works.
    
    . $srcdir/defs || exit 1
    
    cat > Makefile.am << 'END'
    bin_PROGRAMS = qqq
    s1 = z.c
    qqq_SOURCES = $(s1)
    END
    
    $AUTOMAKE || exit 1
    
    grep 'z\.o' Makefile.in