diff options
author | Tom Tromey <tromey@redhat.com> | 1998-04-05 21:36:12 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 1998-04-05 21:36:12 +0000 |
commit | 3bdbb9e2ac1f00fbc0c387823a5544062b8070ff (patch) | |
tree | 6995f80fd7813d349f6924a16f6e93dab5ba22f5 /tests/library.test | |
parent | 0b6882f634f66fdd068bdbcecf4bbfeed2962aad (diff) | |
download | automake-3bdbb9e2ac1f00fbc0c387823a5544062b8070ff.tar.gz |
library dependency bug reported by proven
Diffstat (limited to 'tests/library.test')
-rwxr-xr-x | tests/library.test | 20 |
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 |