Edit

kc3-lang/automake/tests/alllib.test

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1996-08-27 05:53:57
    Hash : 89d00298
    Message : More fixes

  • tests/alllib.test
  • #! /bin/sh
    
    # Make sure EXTRA_LIBRARIES aren't built by "all".
    # Bug from Steve M Robbins.
    
    . $srcdir/defs || exit 1
    
    cat >> configure.in << 'END'
    AC_PROG_RANLIB
    END
    
    cat > Makefile.am << 'END'
    lib_LIBRARIES = V
    EXTRA_LIBRARIES = Vm
    END
    
    $AUTOMAKE || exit 1
    
    (grep '^LIBFILES =' Makefile.in | grep libVm) && exit 1
    exit 0