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]

Documentation generation patch [Take 2]



This is take 2 of a patch to add the generation of the c-tree and 
cppinternals manuals. Joseph had some comments on my previous patch
(which I took into account in a version I forgot to submit), but 
since gxxint.texi does not exist any longer, I guess those comments 
are now void.

2001-03-20  Theodore Papadopoulo  <Theodore.Papadopoulo@sophia.inria.fr>

	* Makefile.in (dvi): Add generation for the c-tree cppinternals and
    documentations.

Index: gcc/Makefile.in
===================================================================
RCS file: /cvs/gcc/egcs/gcc/Makefile.in,v
retrieving revision 1.655
diff -c -3 -p -r1.655 Makefile.in
*** Makefile.in	2001/05/04 02:58:45	1.655
--- Makefile.in	2001/05/04 18:39:42
*************** $(srcdir)/cppinternals.info: $(srcdir)/c
*** 2255,2261 ****
  	cd $(srcdir) && $(MAKEINFO) $(MAKEINFOFLAGS) -o cppinternals.info \
  		cppinternals.texi
  
! dvi: gcc.dvi cpp.dvi lang.dvi
  
  # This works with GNU Make's default rule.
  gcc.dvi: $(srcdir)/gcc.texi $(srcdir)/extend.texi $(srcdir)/install.texi \
--- 2255,2261 ----
  	cd $(srcdir) && $(MAKEINFO) $(MAKEINFOFLAGS) -o cppinternals.info \
  		cppinternals.texi
  
! dvi: gcc.dvi cpp.dvi lang.dvi c-tree.dvi cppinternals.dvi
  
  # This works with GNU Make's default rule.
  gcc.dvi: $(srcdir)/gcc.texi $(srcdir)/extend.texi $(srcdir)/install.texi \
*************** cpp.dvi: $(srcdir)/cpp.texi
*** 2269,2274 ****
--- 2269,2284 ----
  	TEXINPUTS=${texidir}:$(srcdir):$$TEXINPUTS tex cpp.texi
  	texindex cpp.??
  	TEXINPUTS=${texidir}:$(srcdir):$$TEXINPUTS tex cpp.texi
+ 
+ c-tree.dvi: $(srcdir)/c-tree.texi
+ 	TEXINPUTS=${texidir}:$(srcdir):$$TEXINPUTS tex c-tree.texi
+ 	texindex c-tree.??
+ 	TEXINPUTS=${texidir}:$(srcdir):$$TEXINPUTS tex c-tree.texi
+ 
+ cppinternals.dvi: $(srcdir)/cppinternals.texi
+ 	TEXINPUTS=${texidir}:$(srcdir):$$TEXINPUTS tex cppinternals.texi
+ 	texindex cppinternals.??
+ 	TEXINPUTS=${texidir}:$(srcdir):$$TEXINPUTS tex cppinternals.texi
  
  generated-manpages: $(srcdir)/gcov.1 $(srcdir)/cpp.1 $(srcdir)/gcc.1
  

 --------------------------------------------------------------------
 Theodore Papadopoulo
 Email: Theodore.Papadopoulo@sophia.inria.fr Tel: (33) 04 92 38 76 01
 --------------------------------------------------------------------



PGP signature


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