Original recent threads: <http://lists.gnu.org/archive/html/automake-patches/2012-04/msg00153.html> <http://lists.gnu.org/archive/html/automake-patches/2012-04/msg00204.html>
Original old thread, going back to June 2009: <http://lists.gnu.org/archive/html/automake-patches/2009-07/msg00016.html> with its August ans September follow-ups: <http://lists.gnu.org/archive/html/automake-patches/2009-08/msg00000.html> <http://lists.gnu.org/archive/html/automake-patches/2009-09/msg00002.html> Peter Breitenlohner (5): objc++: initial support for Objective C++ objc++: add documentation objc++: test support for '.mm' suffix in _SOURCES entries objc++: add first basic test objc, objc++: add stress test Stefano Lattarini (5): news: announce initial support for Objective C++ objc++, objc: add first semantic tests objc: reorganize basic tests objc, objc++: test automatic dependency tracking objc, objc++: test support for compilation flags NEWS | 5 + automake.in | 29 +++- doc/automake.texi | 57 ++++++- lib/Automake/Variable.pm | 2 + m4/depend.m4 | 5 +- m4/init.m4 | 9 +- t/ext.sh | 10 +- t/list-of-tests.mk | 11 +- t/nodep2.sh | 8 +- t/{objc2.sh => objc-basic.sh} | 25 +-- t/objc-deps.sh | 72 ++++++++ t/objc-flags.sh | 62 +++++++ t/objc-megademo.sh | 364 +++++++++++++++++++++++++++++++++++++++++ t/objc-minidemo.sh | 76 +++++++++ t/objc.sh | 36 ---- t/objcxx-basic.sh | 47 ++++++ t/objcxx-deps.sh | 81 +++++++++ t/objcxx-flags.sh | 72 ++++++++ t/objcxx-minidemo.sh | 77 +++++++++ 19 files changed, 989 insertions(+), 59 deletions(-) rename t/{objc2.sh => objc-basic.sh} (59%) create mode 100755 t/objc-deps.sh create mode 100755 t/objc-flags.sh create mode 100755 t/objc-megademo.sh create mode 100755 t/objc-minidemo.sh delete mode 100755 t/objc.sh create mode 100755 t/objcxx-basic.sh create mode 100755 t/objcxx-deps.sh create mode 100755 t/objcxx-flags.sh create mode 100755 t/objcxx-minidemo.sh -- 1.7.9.5