This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch] Libgcc: Add documentation targets to makefile.


Currently, all of the documentation targets -- "make info", "make pdf", "make html", and "make dvi" -- are broken because the appropriate targets do not exist in the new libgcc makefile. The attached patch fixes this.

Tested, with all of the above "make" checks, on i686-pc-linux-gnu. Ok for trunk?

(I'd commit this as obvious, except that I'm not sure whether there might be some reason to put them in a different part of the makefile or somesuch.)

- Brooks
Index: Makefile.in
===================================================================
--- Makefile.in	(revision 120444)
+++ Makefile.in	(working copy)
@@ -729,6 +729,15 @@
 
 all: $(extra-parts)
 
+# Documentation targets (empty).
+info:
+
+html:
+
+dvi:
+
+pdf:
+
 # Install rules.  These do not depend on "all", so that they can be invoked
 # recursively from it.
 install-libunwind:

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]