]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
added new test
authorTom Tromey <tromey@redhat.com>
Sun, 30 Nov 1997 05:12:04 +0000 (05:12 +0000)
committerTom Tromey <tromey@redhat.com>
Sun, 30 Nov 1997 05:12:04 +0000 (05:12 +0000)
NEWS
tests/ChangeLog
tests/Makefile.am
tests/Makefile.in
tests/objc.test [new file with mode: 0755]

diff --git a/NEWS b/NEWS
index ceddc866b1e9eaedb000f8397a475dcc17bebdba..662d759437480835703d63a25579c6916fba1232 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,4 @@
-New in 1.2c:
+New in 1.2d:
 * Bug fixes
 * Better Cygwin32 support
 * Support for suffix rules with _SOURCES variables
index 378811fe8ab7f4939bcc2675ffc6401f847d3fef..b36e9606fd49cd64127fe97b6760c94cfabea8f0 100644 (file)
@@ -1,3 +1,7 @@
+Sat Nov 29 22:09:27 1997  Tom Tromey  <tromey@cygnus.com>
+
+       * objc.test: New file.
+
 Sat Oct 25 00:04:04 1997  Tom Tromey  <tromey@cygnus.com>
 
        * libobj7.test: New file.
index 86b02f6024165e6505d3f744d4253b55fbc71fd0..c32b5ab1105f7d12cfb335d0959b39b9317022b6 100644 (file)
@@ -27,7 +27,7 @@ yaccpp.test texinfo3.test texinfo4.test tagsub.test cxxlibobj.test \
 seenc.test cygwin32.test lisp.test stamph.test ldadd.test \
 version2.test conf2.test cond.test cond2.test xsource.test \
 libobj6.test depend3.test output5.test ammissing.test install.test \
-libobj7.test
+libobj7.test objc.test
 
 EXTRA_DIST = defs $(TESTS)
 
index f534bedced494a983f9722e276aaef489cd6f46c..3111e824195af0f71e36a39809daf18259a462b5 100644 (file)
@@ -88,7 +88,7 @@ yaccpp.test texinfo3.test texinfo4.test tagsub.test cxxlibobj.test \
 seenc.test cygwin32.test lisp.test stamph.test ldadd.test \
 version2.test conf2.test cond.test cond2.test xsource.test \
 libobj6.test depend3.test output5.test ammissing.test install.test \
-libobj7.test
+libobj7.test objc.test
 
 EXTRA_DIST = defs $(TESTS)
 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
diff --git a/tests/objc.test b/tests/objc.test
new file mode 100755 (executable)
index 0000000..e004b88
--- /dev/null
@@ -0,0 +1,20 @@
+#! /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