diff options
author | Brooks Moses <brooks.moses@codesourcery.com> | 2007-03-01 23:59:35 +0000 |
---|---|---|
committer | Brooks Moses <brooks@gcc.gnu.org> | 2007-03-01 15:59:35 -0800 |
commit | dd8e0a66b67c9730f13d090662344cc788d0ad43 (patch) | |
tree | 13e0a3c2888607c35d2b351489cd9bc82a78a58a | |
parent | 385931236cf4236bbc54008223c30c82a70d89e4 (diff) | |
download | gcc-dd8e0a66b67c9730f13d090662344cc788d0ad43.zip gcc-dd8e0a66b67c9730f13d090662344cc788d0ad43.tar.gz gcc-dd8e0a66b67c9730f13d090662344cc788d0ad43.tar.bz2 |
Makefile.am: Add dummy install-pdf target.
* Makefile.am: Add dummy install-pdf target.
* Makefile.in: Regenerate
From-SVN: r122448
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/Makefile.am | 4 | ||||
-rw-r--r-- | libstdc++-v3/Makefile.in | 5 |
3 files changed, 12 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index f4accb1..d025ca0 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2007-03-01 Brooks Moses <brooks.moses@codesourcery.com> + + * Makefile.am: Add dummy install-pdf target. + * Makefile.in: Regenerate + 2007-03-01 Paolo Carlini <pcarlini@suse.de> PR libstdc++/31005 diff --git a/libstdc++-v3/Makefile.am b/libstdc++-v3/Makefile.am index c1f17b6..562b3e8 100644 --- a/libstdc++-v3/Makefile.am +++ b/libstdc++-v3/Makefile.am @@ -113,6 +113,8 @@ FLAGS_TO_PASS = $(AM_MAKEFLAGS) # Installation of distribution html documentation not yet supported # TODO: Write custom install-html rule. -.PHONY: install-html +.PHONY: install-html install-pdf install-html: +# No install-pdf support in automake yet +install-pdf: diff --git a/libstdc++-v3/Makefile.in b/libstdc++-v3/Makefile.in index cb77cbc..7bb337c 100644 --- a/libstdc++-v3/Makefile.in +++ b/libstdc++-v3/Makefile.in @@ -798,8 +798,11 @@ TAGS: tags-recursive $(LISP) # Installation of distribution html documentation not yet supported # TODO: Write custom install-html rule. -.PHONY: install-html +.PHONY: install-html install-pdf install-html: + +# No install-pdf support in automake yet +install-pdf: # 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: |