Edit

kc3-lang/automake/tests/discover.test

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1996-10-06 03:55:55
    Hash : c19b5620
    Message : Many bug fixes

  • tests/discover.test
  • #! /bin/sh
    
    # Test to make sure LIBOBJS file cannot be mentioned explicitly.
    
    . $srcdir/defs || exit 1
    
    cat > configure.in << 'END'
    PACKAGE=nonesuch
    VERSION=nonesuch
    AC_ARG_PROGRAM
    AC_PROG_INSTALL
    AC_PROG_RANLIB
    LIBOBJS="$LIBOBJS fsusage.o"
    AC_OUTPUT(Makefile)
    END
    
    cat > Makefile.am << 'END'
    noinst_LIBRARIES = tu
    tu_SOURCES = fsusage.c
    tu_LIBADD = @LIBOBJS@
    END
    
    : > fsusage.c
    
    $AUTOMAKE && exit 1
    exit 0