Edit

kc3-lang/automake/tests/objc.test

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1997-11-30 05:12:04
    Hash : e997d842
    Message : added new test

  • tests/objc.test
  • #! /bin/sh
    
    # Test to make sure LINK defined for Objective C.
    
    . $srcdir/defs || exit 1
    
    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