Edit

kc3-lang/automake/tests/make.test

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 2001-04-11 04:17:21
    Hash : 9c3af685
    Message : 2001-04-10 Ralf Corsepius <corsepiu@faw.uni-ulm.de> * m4/make.m4 (AM_MAKE_INCLUDE): Pass `-s' to make. * tests/Makefile.am (TESTS): Added make.test. * tests/make.test: New file.

  • tests/make.test
  • #! /bin/sh
    
    # Test to make sure `make' check works.
    # From Ralf Corsepius.
    
    . $srcdir/defs || exit 1
    
    cat > configure.in << 'END'
    AC_INIT(Makefile.am)
    AM_INIT_AUTOMAKE(foo,0,no)
    AM_MAKE_INCLUDE
    AC_OUTPUT(Makefile)
    END
    
    : > Makefile.am
    
    $needs_autoconf
    
    set -e
    
    $ACLOCAL
    $AUTOCONF
    $AUTOMAKE
    
    export ACLOCAL
    export AUTOCONF
    export AUTOMAKE
    
    ./configure
    touch configure.in
    $MAKE
    
    fgrep '_am_include = #' Makefile && exit 1
    exit 0