Merge branch 'minor'
[automake.git] / t / objc-basic.sh
blob8dad76f8bd13167d3859e26df82fc6d09405576a
1 #! /bin/sh
2 # Copyright (C) 2012-2017 Free Software Foundation, Inc.
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2, or (at your option)
7 # any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # Basic tests on the Objective C support that don't actually
15 # require an Objective-C compiler.
16 # See also sister test 'objcxx-basic.sh'.
18 . test-init.sh
20 cat > Makefile.am <<'END'
21 bin_PROGRAMS = hello
22 hello_SOURCES = hello.m
23 END
25 $ACLOCAL
26 AUTOMAKE_fails
27 grep "'OBJC'.* undefined" stderr
28 grep "add .*'AC_PROG_OBJC'" stderr
30 rm -rf autom4te*.cache
32 echo AC_PROG_OBJC >> configure.ac
34 $ACLOCAL
35 $AUTOMAKE
36 $EGREP '^\.SUFFIXES:.* \.m( |$)' Makefile.in