.
authorJim Meyering <jim@meyering.net>
Sat, 12 Jan 2002 19:07:54 +0000 (19:07 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 12 Jan 2002 19:07:54 +0000 (19:07 +0000)
tests/libobj11.test [new file with mode: 0755]

diff --git a/tests/libobj11.test b/tests/libobj11.test
new file mode 100755 (executable)
index 0000000..3f33b41
--- /dev/null
@@ -0,0 +1,26 @@
+#! /bin/sh
+
+# AC_LIBOBJ must allow [] around its argument.
+
+. $srcdir/defs || exit 1
+
+cat > configure.in << 'END'
+AC_INIT
+AM_INIT_AUTOMAKE(nonesuch, nonesuch)
+AC_PROG_CC
+AC_PROG_RANLIB
+AC_EXEEXT
+AC_LIBOBJ([mountlist])
+AC_OUTPUT(Makefile)
+END
+
+cat > Makefile.am << 'END'
+noinst_LIBRARIES = libtu.a
+libtu_a_SOURCES =
+libtu_a_LIBADD = @LIBOBJS@
+END
+
+: > mountlist.c
+
+$ACLOCAL || exit 1
+$AUTOMAKE || exit 1