mirror of git://gcc.gnu.org/git/gcc.git
Makefile.in: Add TEXI2PDF definition.
gcc/ada/ * Makefile.in: Add TEXI2PDF definition. * Make-lang.in: Add "ada.pdf" target. libada/ * Makefile.in: Add dummy "pdf" target. From-SVN: r117818
This commit is contained in:
parent
8829ef30e4
commit
a838492866
|
@ -1,7 +1,11 @@
|
||||||
|
2006-10-16 Brooks Moses <bmoses@stanford.edu>
|
||||||
|
|
||||||
|
* Makefile.in: Add TEXI2PDF definition.
|
||||||
|
* Make-lang.in: Add "ada.pdf" target.
|
||||||
|
|
||||||
2006-10-03 Kazu Hirata <kazu@codesourcery.com>
|
2006-10-03 Kazu Hirata <kazu@codesourcery.com>
|
||||||
|
|
||||||
* decl.c, utils.c: Fix comment typos.
|
* decl.c, utils.c: Fix comment typos.
|
||||||
|
|
||||||
* utils.c: Fix a typo.
|
* utils.c: Fix a typo.
|
||||||
|
|
||||||
2006-09-28 Eric Botcazou <ebotcazou@adacore.com>
|
2006-09-28 Eric Botcazou <ebotcazou@adacore.com>
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# Each language makefile fragment must provide the following targets:
|
# Each language makefile fragment must provide the following targets:
|
||||||
#
|
#
|
||||||
# foo.all.cross, foo.start.encap, foo.rest.encap,
|
# foo.all.cross, foo.start.encap, foo.rest.encap,
|
||||||
# foo.install-common, foo.install-man, foo.install-info, foo.dvi,
|
# foo.install-common, foo.install-man, foo.install-info, foo.dvi, foo.pdf
|
||||||
# foo.uninstall, foo.mostlyclean, foo.clean, foo.distclean,
|
# foo.uninstall, foo.mostlyclean, foo.clean, foo.distclean,
|
||||||
# foo.maintainer-clean, foo.stage1, foo.stage2, foo.stage3, foo.stage4
|
# foo.maintainer-clean, foo.stage1, foo.stage2, foo.stage3, foo.stage4
|
||||||
#
|
#
|
||||||
|
@ -431,6 +431,9 @@ ada.install-info: $(DESTDIR)$(infodir)/gnat_ugn_unw.info \
|
||||||
ada.dvi: doc/gnat_ugn_unw.dvi \
|
ada.dvi: doc/gnat_ugn_unw.dvi \
|
||||||
doc/gnat_rm.dvi doc/gnat-style.dvi
|
doc/gnat_rm.dvi doc/gnat-style.dvi
|
||||||
|
|
||||||
|
ada.pdf: doc/gnat_ugn_unw.pdf \
|
||||||
|
doc/gnat_rm.pdf doc/gnat-style.pdf
|
||||||
|
|
||||||
ada.html:
|
ada.html:
|
||||||
|
|
||||||
doc/gnat_ugn_unw.dvi: doc/gnat_ugn_unw.texi $(gcc_docdir)/include/fdl.texi \
|
doc/gnat_ugn_unw.dvi: doc/gnat_ugn_unw.texi $(gcc_docdir)/include/fdl.texi \
|
||||||
|
@ -444,6 +447,17 @@ doc/gnat_rm.dvi: ada/gnat_rm.texi $(gcc_docdir)/include/fdl.texi \
|
||||||
doc/gnat-style.dvi: ada/gnat-style.texi $(gcc_docdir)/include/fdl.texi
|
doc/gnat-style.dvi: ada/gnat-style.texi $(gcc_docdir)/include/fdl.texi
|
||||||
$(TEXI2DVI) -c -I $(abs_docdir)/include -o $@ $<
|
$(TEXI2DVI) -c -I $(abs_docdir)/include -o $@ $<
|
||||||
|
|
||||||
|
doc/gnat_ugn_unw.pdf: doc/gnat_ugn_unw.texi $(gcc_docdir)/include/fdl.texi \
|
||||||
|
$(gcc_docdir)/include/gcc-common.texi gcc-vers.texi
|
||||||
|
$(TEXI2PDF) -c -I $(abs_docdir)/include -o $@ $<
|
||||||
|
|
||||||
|
doc/gnat_rm.pdf: ada/gnat_rm.texi $(gcc_docdir)/include/fdl.texi \
|
||||||
|
$(gcc_docdir)/include/gcc-common.texi gcc-vers.texi
|
||||||
|
$(TEXI2PDF) -c -I $(abs_docdir)/include -o $@ $<
|
||||||
|
|
||||||
|
doc/gnat-style.pdf: ada/gnat-style.texi $(gcc_docdir)/include/fdl.texi
|
||||||
|
$(TEXI2PDF) -c -I $(abs_docdir)/include -o $@ $<
|
||||||
|
|
||||||
|
|
||||||
# Install hooks:
|
# Install hooks:
|
||||||
# gnat1 is installed elsewhere as part of $(COMPILERS).
|
# gnat1 is installed elsewhere as part of $(COMPILERS).
|
||||||
|
|
|
@ -114,6 +114,7 @@ PWD_COMMAND = $${PWDCMD-pwd}
|
||||||
INSTALL_DATA_DATE = cp -p
|
INSTALL_DATA_DATE = cp -p
|
||||||
MAKEINFO = makeinfo
|
MAKEINFO = makeinfo
|
||||||
TEXI2DVI = texi2dvi
|
TEXI2DVI = texi2dvi
|
||||||
|
TEXI2PDF = texi2pdf
|
||||||
GNATBIND = $(STAGE_PREFIX)gnatbind
|
GNATBIND = $(STAGE_PREFIX)gnatbind
|
||||||
GNATBIND_FLAGS = -static -x
|
GNATBIND_FLAGS = -static -x
|
||||||
ADA_CFLAGS =
|
ADA_CFLAGS =
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
2006-10-16 Brooks Moses <bmoses@stanford.edu>
|
||||||
|
|
||||||
|
* Makefile.in: Add dummy "pdf" target.
|
||||||
|
|
||||||
2006-05-23 Carlos O'Donell <carlos@codesourcery.com>
|
2006-05-23 Carlos O'Donell <carlos@codesourcery.com>
|
||||||
|
|
||||||
* Makefile.in: Add install-html target.
|
* Makefile.in: Add install-html target.
|
||||||
|
|
|
@ -116,6 +116,9 @@ info:
|
||||||
# Build DVI (none here).
|
# Build DVI (none here).
|
||||||
dvi:
|
dvi:
|
||||||
|
|
||||||
|
# Build PDF (none here).
|
||||||
|
pdf:
|
||||||
|
|
||||||
# Build html (none here).
|
# Build html (none here).
|
||||||
html:
|
html:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue