Edit

kc3-lang/automake/tests/objc.test

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1999-01-10 20:58:08
    Hash : aa78b31e
    Message : * objc.test: Updated to account for new ObjC support.

  • tests/objc.test
  • #! /bin/sh
    
    # Test to make sure LINK defined for Objective C.
    
    . $srcdir/defs || exit 1
    
    echo 'AC_SUBST(OBJC)' >> configure.in
    
    cat > Makefile.am << 'END'
    bin_PROGRAMS = foo
    foo_SOURCES = foo.m
    
    SUFFIXES = .m
    .m.o:
    	whatever
    END
    
    : > foo.m
    
    $AUTOMAKE || exit 1
    
    grep '^LINK' Makefile.in