Edit

kc3-lang/automake/tests/libobj.test

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1996-02-27 17:57:37
    Hash : 5945f033
    Message : Updated all tests

  • tests/libobj.test
  • #!/bin/sh
    
    # Test for bug reported by Jim Meyering:
    # automake-0.29 didn't handle this line properly.
    #   LIBOBJS="$LIBOBJS fsusage.o mountlist.o"
    
    . $srcdir/defs || exit 1
    
    cat > configure.in << 'END'
    AC_ARG_PROGRAM
    AC_PROG_INSTALL
    AC_PROG_RANLIB
    LIBOBJS="$LIBOBJS fsusage.o mountlist.o"
    AC_OUTPUT(Makefile)
    END
    
    cat > Makefile.am << 'END'
    noinst_LIBRARIES = tu
    tu_SOURCES =
    tu_LIBADD = @LIBOBJS@
    END
    
    : > fsusage.c
    : > mountlist.c
    
    $AUTOMAKE