]> sourceware.org Git - automake.git/commitdiff
* libobj10.test: New file.
authorAlexandre Oliva <oliva@dcc.unicamp.br>
Tue, 20 Apr 1999 02:36:42 +0000 (02:36 +0000)
committerAlexandre Oliva <oliva@dcc.unicamp.br>
Tue, 20 Apr 1999 02:36:42 +0000 (02:36 +0000)
* Makefile.am (TESTS): Added libobj10.test.

tests/ChangeLog
tests/Makefile.am
tests/Makefile.in
tests/libobj10.test [new file with mode: 0755]

index 13646db69c2828fb93584b54c42de0895c5cee12..fed4884098529114d44b487cfc55d98d08223b54 100644 (file)
@@ -1,3 +1,8 @@
+1999-04-20  Alexandre Oliva  <oliva@dcc.unicamp.br>
+
+       * libobj10.test: New file.
+       * Makefile.am (TESTS): Added libobj10.test.
+
 1999-04-11  Tom Tromey  <tromey@cygnus.com>
 
        * subobj2.test: New file.
index 5cd5e8d5e5a8ff5445f0e6f9748b7d4fdf65a997..4d28b20addd166f163df1b762b5e4d36afa3d6b7 100644 (file)
@@ -27,6 +27,7 @@ instexec.test insthook.test instman.test interp.test interp2.test \
 java.test javaprim.test javasubst.test ldadd.test lex.test lex2.test \
 lex3.test libobj.test libobj2.test libobj3.test libobj4.test \
 libobj5.test libobj6.test libobj7.test libobj8.test libobj9.test \
+libobj10.test \
 library.test link_c_cxx.test link_f_c.test link_f_c_cxx.test \
 link_f_cxx.test link_f_only.test lisp.test mclean.test mdate.test \
 mdate2.test mdate3.test mkinst2.test mkinstall.test nodep.test \
index 2737f0a1c62cedc99ac48bcf0f8344a6a1a32dda..1aae92d724eb2fb6220fb9219ad0f139f99e02ed 100644 (file)
@@ -92,6 +92,7 @@ instexec.test insthook.test instman.test interp.test interp2.test \
 java.test javaprim.test javasubst.test ldadd.test lex.test lex2.test \
 lex3.test libobj.test libobj2.test libobj3.test libobj4.test \
 libobj5.test libobj6.test libobj7.test libobj8.test libobj9.test \
+libobj10.test \
 library.test link_c_cxx.test link_f_c.test link_f_c_cxx.test \
 link_f_cxx.test link_f_only.test lisp.test mclean.test mdate.test \
 mdate2.test mdate3.test mkinst2.test mkinstall.test nodep.test \
diff --git a/tests/libobj10.test b/tests/libobj10.test
new file mode 100755 (executable)
index 0000000..d0bc7cb
--- /dev/null
@@ -0,0 +1,28 @@
+#! /bin/sh
+
+# Do not complain about the inexistence of a source for LIBOBJS if
+# it's in BUILT_SOURCES.  Reported by Erez Zadok
+
+. $srcdir/defs || exit 1
+
+cat > configure.in << 'END'
+PACKAGE=nonesuch
+VERSION=nonesuch
+AC_PROG_CC
+AC_ARG_PROGRAM
+AC_PROG_RANLIB
+AC_PROG_INSTALL
+LIBOBJS="$LIBOBJS foo.o"
+AC_OUTPUT(Makefile)
+END
+
+cat > Makefile.am << 'END'
+noinst_LIBRARIES = libfoo.a
+libfoo_a_LIBADD = @LIBOBJS@
+END
+
+$AUTOMAKE && exit 1
+
+echo 'BUILT_SOURCES = foo.c' >> Makefile.am
+
+$AUTOMAKE || exit 1
This page took 0.031153 seconds and 5 git commands to generate.