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.def | |
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.def')
-rw-r--r-- | Makefile.def | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile.def b/Makefile.def index 3dccd6dfc8b..09d9c987d27 100644 --- a/Makefile.def +++ b/Makefile.def @@ -154,6 +154,9 @@ recursive_targets = { make_target= TAGS; recursive_targets = { make_target= install-info; depend=configure; depend=info; }; +recursive_targets = { make_target= install-html; + depend=configure; + depend=html; }; recursive_targets = { make_target= installcheck; depend=configure; }; recursive_targets = { make_target= mostlyclean; }; @@ -171,7 +174,10 @@ flags_to_pass = { flag= bindir ; }; flags_to_pass = { flag= datadir ; }; flags_to_pass = { flag= exec_prefix ; }; flags_to_pass = { flag= includedir ; }; +flags_to_pass = { flag= datarootdir ; }; +flags_to_pass = { flag= docdir ; }; flags_to_pass = { flag= infodir ; }; +flags_to_pass = { flag= htmldir ; }; flags_to_pass = { flag= libdir ; }; flags_to_pass = { flag= libexecdir ; }; flags_to_pass = { flag= lispdir ; }; |