Edit

kc3-lang/automake/tests/libfiles.test

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1996-11-15 07:14:37
    Hash : 6e083c82
    Message : Updated tests for new CC checking

  • tests/libfiles.test
  • #! /bin/sh
    
    # Test for bug reported by Gord Matzigkeit.  If user-defined prefix is
    # used with library, _LIBFILES is never generated.
    
    . $srcdir/defs || exit 1
    
    cat >> configure.in << 'END'
    AC_PROG_CC
    AC_PROG_RANLIB
    END
    
    cat > Makefile.am << 'END'
    blibdir = $(top_builddir)/lib
    blib_LIBRARIES = foo
    foo_SOURCES = foo.c
    END
    
    $AUTOMAKE || exit 1
    
    grep '^blib_LIBFILES' Makefile.in