summaryrefslogtreecommitdiff
path: root/tests/library.test
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>1998-04-05 21:36:12 +0000
committerTom Tromey <tromey@redhat.com>1998-04-05 21:36:12 +0000
commit3bdbb9e2ac1f00fbc0c387823a5544062b8070ff (patch)
tree6995f80fd7813d349f6924a16f6e93dab5ba22f5 /tests/library.test
parent0b6882f634f66fdd068bdbcecf4bbfeed2962aad (diff)
downloadautomake-3bdbb9e2ac1f00fbc0c387823a5544062b8070ff.tar.gz
library dependency bug reported by proven
Diffstat (limited to 'tests/library.test')
-rwxr-xr-xtests/library.test20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/library.test b/tests/library.test
new file mode 100755
index 000000000..0dcbcea5a
--- /dev/null
+++ b/tests/library.test
@@ -0,0 +1,20 @@
+#! /bin/sh
+
+# Test for _DEPENDENCIES with libraries.
+
+. $srcdir/defs || exit 1
+
+cat >> configure.in << 'END'
+AC_PROG_RANLIB
+AM_MAINTAINER_MODE
+AM_EXEEXT
+AC_PROG_CC
+END
+
+cat > Makefile.am << 'END'
+AUTOMAKE_OPTIONS = dejagnu cygnus
+lib_LIBRARIES = libfoo.a
+libfoo_a_DEPENDENCIES = libzot.a
+END
+
+$AUTOMAKE