]> sourceware.org Git - automake.git/commitdiff
* tests/Makefile.am (TESTS): Added libtool2.test.
authorTom Tromey <tromey@redhat.com>
Sun, 1 Jul 2001 23:18:09 +0000 (23:18 +0000)
committerTom Tromey <tromey@redhat.com>
Sun, 1 Jul 2001 23:18:09 +0000 (23:18 +0000)
* tests/libtool2.test: New file.

ChangeLog
stamp-vti
tests/Makefile.am
tests/Makefile.in
tests/libtool2.test [new file with mode: 0755]
version.texi

index 593c102c954aa88fb14bbe3cc1ad5a94001a69d2..1125983aacbe64a2f45b6949199fd5d19bac747a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2001-07-01  Tom Tromey  <tromey@redhat.com>
 
+       * tests/Makefile.am (TESTS): Added libtool2.test.
+       * tests/libtool2.test: New file.
+
        * automake.texi (Program and Library Variables): Added example for
        _AR.
 
index 7f46fd08becb4b3767ccd4661e47b9f8a4be9dc5..e65175134464f19b59fd52b3d92a809dbb73f2ec 100644 (file)
--- a/stamp-vti
+++ b/stamp-vti
@@ -1,4 +1,4 @@
-@set UPDATED 12 June 2001
-@set UPDATED-MONTH June 2001
+@set UPDATED 1 July 2001
+@set UPDATED-MONTH July 2001
 @set EDITION 1.4g
 @set VERSION 1.4g
index 9426cb99411472105f72247a935ec0806deefe5d..6110f8b603c8f4e5cb7484fb8969b9da0b074952 100644 (file)
@@ -172,6 +172,7 @@ libobj9.test \
 libobj10.test \
 library.test \
 libtool.test \
+libtool2.test \
 link_c_cxx.test        \
 link_f_c.test \
 link_f_c_cxx.test \
index 2daaa445053e4b236a0df997f49c6aa8b00d8008..67f7e88c0e54582b2de3b7389e628c21405c091a 100644 (file)
@@ -238,6 +238,7 @@ libobj9.test \
 libobj10.test \
 library.test \
 libtool.test \
+libtool2.test \
 link_c_cxx.test        \
 link_f_c.test \
 link_f_c_cxx.test \
diff --git a/tests/libtool2.test b/tests/libtool2.test
new file mode 100755 (executable)
index 0000000..d5945e6
--- /dev/null
@@ -0,0 +1,38 @@
+#! /bin/sh
+
+# Make sure libtool clean targets exist.
+# Report from Eric Magnien.
+
+. $srcdir/defs || exit 1
+
+cat > configure.in << 'END'
+AC_INIT
+AM_INIT_AUTOMAKE(mypackage,0.1)
+
+AC_PROG_CC
+AC_PROG_LIBTOOL
+
+AC_CONFIG_FILES([
+  sub/Makefile
+  Makefile
+])
+AC_OUTPUT
+END
+
+cat > Makefile.am << 'END'
+SUBDIR = subdir
+lib_LTLIBRARIES = libfoo.la
+libfoo_la_SOURCES = foo.c
+END
+
+mkdir sub
+cat > sub/Makefile.am << 'END'
+lib_LTLIBRARIES = libfoo.la
+libfoo_la_SOURCES = foo.c
+END
+
+$ACLOCAL || exit 1
+: > ltmain.sh
+$AUTOMAKE -a || exit 1
+
+fgrep mostlyclean-libtool sub/Makefile.in
index 7f46fd08becb4b3767ccd4661e47b9f8a4be9dc5..e65175134464f19b59fd52b3d92a809dbb73f2ec 100644 (file)
@@ -1,4 +1,4 @@
-@set UPDATED 12 June 2001
-@set UPDATED-MONTH June 2001
+@set UPDATED 1 July 2001
+@set UPDATED-MONTH July 2001
 @set EDITION 1.4g
 @set VERSION 1.4g
This page took 0.034515 seconds and 5 git commands to generate.