Commit 52f2f1d7 by Brooks Moses Committed by Brooks Moses

gfc-internals.texi: New file,

* gfc-internals.texi: New file,
* Make-lang.in: Add rules to convert it to dvi, pdf, and info.

From-SVN: r123251
parent 24bfafbc
2007-03-26 Brooks Moses <brooks.moses@codesourcery.com>
* gfc-internals.texi: New file,
* Make-lang.in: Add rules to convert it to dvi, pdf, and info.
2007-03-26 Brooks Moses <brooks.moses@codesourcery.com>
* error.c (show_locus): Remove always-false test.
2007-03-26 Brooks Moses <brooks.moses@codesourcery.com>
......
......@@ -121,13 +121,13 @@ fortran.tags: force
cd $(srcdir)/fortran; etags -o TAGS.sub *.c *.h; \
etags --include TAGS.sub --include ../TAGS.sub
fortran.info: doc/gfortran.info
fortran.dvi: doc/gfortran.dvi
fortran.info: doc/gfortran.info doc/gfc-internals.info
fortran.dvi: doc/gfortran.dvi doc/gfc-internals.dvi
fortran.html: $(build_htmldir)/gfortran/index.html
F95_PDFFILES = doc/gfortran.pdf
fortran.pdf: $(F95_PDFFILES)
fortran.pdf: $(F95_PDFFILES) doc/gfc-internals.pdf
fortran.install-pdf: $(F95_PDFFILES)
@$(NORMAL_INSTALL)
......@@ -186,6 +186,26 @@ $(build_htmldir)/gfortran/index.html: $(GFORTRAN_TEXI)
gfortran.pod: $(GFORTRAN_TEXI)
-$(TEXI2POD) < $(srcdir)/fortran/invoke.texi > $@
# GFORTRAN internals documentation.
GFC_INTERNALS_TEXI = \
$(srcdir)/fortran/gfc-internals.texi \
$(srcdir)/doc/include/fdl.texi \
$(srcdir)/doc/include/gcc-common.texi \
gcc-vers.texi
doc/gfc-internals.info: $(GFC_INTERNALS_TEXI)
if [ x$(BUILD_INFO) = xinfo ]; then \
rm -f doc/gfc-internals.info-*; \
$(MAKEINFO) -I $(srcdir)/doc/include -I $(srcdir)/fortran \
-o $@ $<; \
else true; fi
doc/gfc-internals.dvi: $(GFC_INTERNALS_TEXI)
$(TEXI2DVI) -I $(srcdir)/fortran -I $(abs_docdir)/include -o $@ $<
doc/gfc-internals.pdf: $(GFC_INTERNALS_TEXI)
$(TEXI2PDF) -I $(srcdir)/fortran -I $(abs_docdir)/include -o $@ $<
# Create or recreate the gfortran private include file directory.
install-finclude-dir: installdirs
-rm -rf $(DESTDIR)$(libsubdir)/finclude
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment