diff options
author | Carlos O'Donell <carlos@codesourcery.com> | 2006-05-24 17:57:58 +0000 |
---|---|---|
committer | Carlos O'Donell <carlos@gcc.gnu.org> | 2006-05-24 17:57:58 +0000 |
commit | 65d6e994083e218dc58ac45b62be281abc99663f (patch) | |
tree | 6b0c7c3c2e57021fd73772383eb541aaae55292b /Makefile.tpl | |
parent | 740dfbde6788eb4f7e5be59fb7dd9b72a73e8494 (diff) | |
download | gcc-65d6e994083e218dc58ac45b62be281abc99663f.tar.gz |
Makefile.def: Add install-html target.
2006-05-24 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.def: Add install-html target. Add datarootdir
docdir and htmldir to flags_to_pass.
* Makefile.tpl: Add install-html target.
* Makefile.in: Regenerate.
* configure.in: Add --with-datarootdir, --with-docdir, and
--with-htmldir options. AC_SUBST datarootdir, docdir and htmldir.
* configure: Regenerate.
From-SVN: r114048
Diffstat (limited to 'Makefile.tpl')
-rw-r--r-- | Makefile.tpl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.tpl b/Makefile.tpl index 274474a5c00..b83d8d5abd9 100644 --- a/Makefile.tpl +++ b/Makefile.tpl @@ -53,6 +53,9 @@ libdir = @libdir@ includedir = @includedir@ oldincludedir = @oldincludedir@ infodir = @infodir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +htmldir = @htmldir@ mandir = @mandir@ man1dir = $(mandir)/man1 man2dir = $(mandir)/man2 @@ -532,7 +535,7 @@ do-[+make_target+]: # Here are the targets which correspond to the do-X targets. -.PHONY: info installcheck dvi html install-info +.PHONY: info installcheck dvi html install-info install-html .PHONY: clean distclean mostlyclean maintainer-clean realclean .PHONY: local-clean local-distclean local-maintainer-clean info: do-info @@ -550,6 +553,8 @@ install-info: do-install-info dir.info $(INSTALL_DATA) dir.info $(DESTDIR)$(infodir)/dir.info ; \ else true ; fi +install-html: do-install-html + local-clean: -rm -f *.a TEMP errs core *.o *~ \#* TAGS *.E *.log |