Add "make pdf" and "make install-pdf", from Brooks Moses
<brooks.moses@codesourcery.com>.
This commit is contained in:
		| @@ -1,3 +1,7 @@ | |||||||
|  | 2007-03-27  Brooks Moses  <brooks.moses@codesourcery.com> | ||||||
|  |  | ||||||
|  | 	* Makefile.in: Add support for "pdf" and "install-pdf" targets. | ||||||
|  |  | ||||||
| 2006-12-19  Paolo Bonzini  <bonzini@gnu.org> | 2006-12-19  Paolo Bonzini  <bonzini@gnu.org> | ||||||
|  |  | ||||||
| 	* configure.texi: Fix botched commit. | 	* configure.texi: Fix botched commit. | ||||||
|   | |||||||
| @@ -28,6 +28,7 @@ man9dir = $(mandir)/man9 | |||||||
| datarootdir = @datarootdir@ | datarootdir = @datarootdir@ | ||||||
| docdir = @docdir@ | docdir = @docdir@ | ||||||
| infodir = @infodir@ | infodir = @infodir@ | ||||||
|  | pdfdir = @docdir@ | ||||||
| htmldir = @htmldir@ | htmldir = @htmldir@ | ||||||
|  |  | ||||||
| SHELL = /bin/sh | SHELL = /bin/sh | ||||||
| @@ -42,6 +43,9 @@ MAKEINFO = `if [ -f ../texinfo/makeinfo/makeinfo ]; \ | |||||||
| TEXI2DVI = `if [ -f ../texinfo/util/texi2dvi ]; \ | TEXI2DVI = `if [ -f ../texinfo/util/texi2dvi ]; \ | ||||||
| 	then echo ../texinfo/util/texi2dvi; \ | 	then echo ../texinfo/util/texi2dvi; \ | ||||||
| 	else echo texi2dvi; fi` | 	else echo texi2dvi; fi` | ||||||
|  | TEXI2PDF = `if [ -f ../texinfo/util/texi2dvi ]; \ | ||||||
|  | 	then echo "../texinfo/util/texi2dvi --pdf"; \ | ||||||
|  | 	else echo "texi2dvi --pdf"; fi` | ||||||
| TEXI2HTML = `if [ -f ../texinfo/makeinfo/makeinfo ]; \ | TEXI2HTML = `if [ -f ../texinfo/makeinfo/makeinfo ]; \ | ||||||
| 	then echo "../texinfo/makeinfo/makeinfo --html"; \ | 	then echo "../texinfo/makeinfo/makeinfo --html"; \ | ||||||
| 	else echo "makeinfo --html"; fi` | 	else echo "makeinfo --html"; fi` | ||||||
| @@ -56,6 +60,7 @@ TEXIDIR = $(srcdir)/../texinfo | |||||||
|  |  | ||||||
| INFOFILES = standards.info configure.info | INFOFILES = standards.info configure.info | ||||||
| DVIFILES = standards.dvi configure.dvi | DVIFILES = standards.dvi configure.dvi | ||||||
|  | PDFFILES = standards.pdf configure.pdf | ||||||
| HTMLFILES = standards.html configure.html | HTMLFILES = standards.html configure.html | ||||||
|  |  | ||||||
| all: info | all: info | ||||||
| @@ -126,6 +131,32 @@ dvi: | |||||||
| 	  fi; \ | 	  fi; \ | ||||||
| 	done | 	done | ||||||
|  |  | ||||||
|  | pdf: | ||||||
|  | 	for f in $(PDFFILES); do \ | ||||||
|  | 	  if test -f $(srcdir)/`echo $$f | sed -e 's/.pdf$$/.texi/'`; then \ | ||||||
|  | 	    if $(MAKE) "TEXI2PDF=$(TEXI2PDF)" $$f; then \ | ||||||
|  | 	      true; \ | ||||||
|  | 	    else \ | ||||||
|  | 	      exit 1; \ | ||||||
|  | 	    fi; \ | ||||||
|  | 	  fi; \ | ||||||
|  | 	done | ||||||
|  |  | ||||||
|  | install-pdf: pdf | ||||||
|  | 	$(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(pdfdir)/etc | ||||||
|  | 	if test ! -f standards.pdf; then cd $(srcdir); fi; \ | ||||||
|  | 	if test -f standards.pdf; then \ | ||||||
|  | 	  for i in standards.pdf*; do \ | ||||||
|  | 	    $(INSTALL_DATA) $$i $(DESTDIR)$(pdfdir)/etc/$$i; \ | ||||||
|  | 	  done; \ | ||||||
|  | 	fi | ||||||
|  | 	if test ! -f configure.pdf; then cd $(srcdir); fi; \ | ||||||
|  | 	if test -f configure.pdf; then \ | ||||||
|  | 	  for i in configure.pdf*; do \ | ||||||
|  | 	    $(INSTALL_DATA) $$i $(DESTDIR)$(pdfdir)/etc/$$i; \ | ||||||
|  | 	  done; \ | ||||||
|  | 	fi | ||||||
|  |  | ||||||
| standards.info: $(srcdir)/standards.texi $(srcdir)/make-stds.texi | standards.info: $(srcdir)/standards.texi $(srcdir)/make-stds.texi | ||||||
| 	$(MAKEINFO) --no-split -I$(srcdir) -o standards.info $(srcdir)/standards.texi | 	$(MAKEINFO) --no-split -I$(srcdir) -o standards.info $(srcdir)/standards.texi | ||||||
|  |  | ||||||
| @@ -138,6 +169,9 @@ standards.dvi: $(srcdir)/standards.texi | |||||||
| standards.ps: standards.dvi | standards.ps: standards.dvi | ||||||
| 	$(DVIPS) standards.dvi -o standards.ps | 	$(DVIPS) standards.dvi -o standards.ps | ||||||
|  |  | ||||||
|  | standards.pdf: $(srcdir)/standards.texi | ||||||
|  | 	TEXINPUTS=$(TEXIDIR):$$TEXINPUTS $(TEXI2PDF) $(srcdir)/standards.texi | ||||||
|  |  | ||||||
| # makeinfo requires images to be in the current directory. | # makeinfo requires images to be in the current directory. | ||||||
| configure.info: $(srcdir)/configure.texi $(srcdir)/configdev.tin $(srcdir)/configbuild.tin | configure.info: $(srcdir)/configure.texi $(srcdir)/configdev.tin $(srcdir)/configbuild.tin | ||||||
| 	rm -f configdev.txt configbuild.txt | 	rm -f configdev.txt configbuild.txt | ||||||
| @@ -166,6 +200,13 @@ configure.ps: configure.dvi $(srcdir)/configdev.ein $(srcdir)/configbuild.ein | |||||||
| 	$(DVIPS) configure.dvi -o configure.ps | 	$(DVIPS) configure.dvi -o configure.ps | ||||||
| 	rm -f configdev.eps configbuild.eps | 	rm -f configdev.eps configbuild.eps | ||||||
|  |  | ||||||
|  | configure.pdf: $(srcdir)/configure.texi $(srcdir)/configdev.tin $(srcdir)/configbuild.tin $(srcdir)/configdev.ein $(srcdir)/configbuild.ein | ||||||
|  | 	rm -f configdev.pdf configbuild.pdf | ||||||
|  | 	epstopdf $(srcdir)/configdev.ein -outfile=configdev.pdf | ||||||
|  | 	epstopdf $(srcdir)/configbuild.ein -outfile=configbuild.pdf | ||||||
|  | 	TEXINPUTS=$(TEXIDIR):$$TEXINPUTS $(TEXI2PDF) $(srcdir)/configure.texi | ||||||
|  | 	rm -f configdev.pdf configbuild.pdf | ||||||
|  |  | ||||||
| configure.html: $(srcdir)/configure.texi | configure.html: $(srcdir)/configure.texi | ||||||
| 	cp $(srcdir)/configdev.jin configdev.jpg | 	cp $(srcdir)/configdev.jin configdev.jpg | ||||||
| 	cp $(srcdir)/configbuild.jin configbuild.jpg | 	cp $(srcdir)/configbuild.jin configbuild.jpg | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user