diff options
author | Carlos O'Donell <carlos@codesourcery.com> | 2006-05-26 14:57:45 +0000 |
---|---|---|
committer | Carlos O'Donell <carlos@gcc.gnu.org> | 2006-05-26 14:57:45 +0000 |
commit | 7541c31ba2afb0b9e5c7893117d8f63a1a7b0e41 (patch) | |
tree | 6c2ef8087df229ec5b852562a595dfb800d83cf0 | |
parent | 262c52acdae826174182b09a9624f6ffeece4846 (diff) | |
download | gcc-7541c31ba2afb0b9e5c7893117d8f63a1a7b0e41.zip gcc-7541c31ba2afb0b9e5c7893117d8f63a1a7b0e41.tar.gz gcc-7541c31ba2afb0b9e5c7893117d8f63a1a7b0e41.tar.bz2 |
Makefile.am: Add install-html target.
2006-05-26 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.am: Add install-html target. Add install-html to .PHONY
* Makefile.in: Regenerate.
From-SVN: r114134
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/Makefile.am | 6 | ||||
-rw-r--r-- | libstdc++-v3/Makefile.in | 5 |
3 files changed, 16 insertions, 0 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 21e4f00..9fc59d9 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2006-05-26 Carlos O'Donell <carlos@codesourcery.com> + + * Makefile.am: Add install-html target. Add install-html to .PHONY + * Makefile.in: Regenerate. + 2006-05-24 Paolo Carlini <pcarlini@suse.de> PR libstdc++/24704 diff --git a/libstdc++-v3/Makefile.am b/libstdc++-v3/Makefile.am index 031f34a..c1f17b6 100644 --- a/libstdc++-v3/Makefile.am +++ b/libstdc++-v3/Makefile.am @@ -110,3 +110,9 @@ AM_MAKEFLAGS = \ # Subdir rules rely on $(FLAGS_TO_PASS) FLAGS_TO_PASS = $(AM_MAKEFLAGS) + +# Installation of distribution html documentation not yet supported +# TODO: Write custom install-html rule. +.PHONY: install-html +install-html: + diff --git a/libstdc++-v3/Makefile.in b/libstdc++-v3/Makefile.in index 78f26a7..e7c8c9e 100644 --- a/libstdc++-v3/Makefile.in +++ b/libstdc++-v3/Makefile.in @@ -786,6 +786,11 @@ check-%: # All the machinations with string instantiations messes up the # automake-generated TAGS rule. Make a simple one here. TAGS: tags-recursive $(LISP) + +# Installation of distribution html documentation not yet supported +# TODO: Write custom install-html rule. +.PHONY: install-html +install-html: # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: |