diff options
author | DJ Delorie <dj@redhat.com> | 2007-03-05 23:19:10 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2007-03-05 23:19:10 +0000 |
commit | a3ca38d2684394ca896817525d455d50a96403da (patch) | |
tree | cdfd2c8377bf632f2775566c53ac9dd3262cc0cb /Makefile.tpl | |
parent | c526a6baf71775536edd7953808784e08185e4e0 (diff) | |
download | gdb-a3ca38d2684394ca896817525d455d50a96403da.zip gdb-a3ca38d2684394ca896817525d455d50a96403da.tar.gz gdb-a3ca38d2684394ca896817525d455d50a96403da.tar.bz2 |
Merge from gcc:
+2007-03-01 Brooks Moses <brooks.moses@codesourcery.com>
+
+ * configure.ac: Add "--with-pdfdir" configure option,
+ which defines pdfdir variable.
+ * Makefile.def (target=fixincludes): Add install-pdf to
+ missing targets.
+ (recursive_targets): Add install-pdf target.
+ (flags_to_pass): Add pdfdir.
+ * Makefile.tpl: Add pdfdir handling, add do-install-pdf
+ target.
+ * configure: Regenerate
+ * Makefile.in: Regenerate
+
+2007-02-28 Eric Christopher <echristo@apple.com>
+
+ Revert:
+ 2006-12-07 Mike Stump <mrs@apple.com>
+
+ * Makefile.def (dependencies): Add dependency for
+ install-target-libssp and install-target-libgomp on
+ install-gcc.
+ * Makefile.in: Regenerate.
+
+2007-02-27 Matt Kraai <kraai@ftbfs.org>
+
+ * configure: Regenerate.
+ * configure.ac: Move statements after variable declarations.
+
Diffstat (limited to 'Makefile.tpl')
-rw-r--r-- | Makefile.tpl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile.tpl b/Makefile.tpl index a3c5093..1502ecf 100644 --- a/Makefile.tpl +++ b/Makefile.tpl @@ -61,6 +61,7 @@ oldincludedir = @oldincludedir@ infodir = @infodir@ datarootdir = @datarootdir@ docdir = @docdir@ +pdfdir = @pdfdir@ htmldir = @htmldir@ mandir = @mandir@ man1dir = $(mandir)/man1 @@ -570,7 +571,8 @@ do-[+make_target+]: # Here are the targets which correspond to the do-X targets. -.PHONY: info installcheck dvi pdf html install-info install-html +.PHONY: info installcheck dvi pdf html +.PHONY: install-info install-pdf install-html .PHONY: clean distclean mostlyclean maintainer-clean realclean .PHONY: local-clean local-distclean local-maintainer-clean info: do-info @@ -589,6 +591,8 @@ install-info: do-install-info dir.info $(INSTALL_DATA) dir.info $(DESTDIR)$(infodir)/dir.info ; \ else true ; fi +install-pdf: do-install-pdf + install-html: do-install-html local-clean: |