summaryrefslogtreecommitdiff
path: root/libstdc++-v3/docs/html/Makefile
diff options
context:
space:
mode:
authorpme <pme@138bc75d-0d04-0410-961f-82ee72b054a4>2001-11-06 00:18:37 +0000
committerpme <pme@138bc75d-0d04-0410-961f-82ee72b054a4>2001-11-06 00:18:37 +0000
commit0367f3e357bb2c69b657e14ba479d62c09fd1a54 (patch)
treeb4497e5f083582709218ff5c7f7065202e3b6ebb /libstdc++-v3/docs/html/Makefile
parent795b12569754a9fc48d7b405f1bb083232bf483c (diff)
downloadgcc-0367f3e357bb2c69b657e14ba479d62c09fd1a54.tar.gz
2001-11-05 Phil Edwards <pme@gcc.gnu.org>
* porting.texi: Move... * docs/html/17_intro/porting.texi: ...to here. * docs/html/Makefile: Add rule to rebuild... * docs/html/17_intro/porting.html: ...this. New file. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@46797 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/docs/html/Makefile')
-rw-r--r--libstdc++-v3/docs/html/Makefile10
1 files changed, 9 insertions, 1 deletions
diff --git a/libstdc++-v3/docs/html/Makefile b/libstdc++-v3/docs/html/Makefile
index bedbd883f18..df46f74d7a2 100644
--- a/libstdc++-v3/docs/html/Makefile
+++ b/libstdc++-v3/docs/html/Makefile
@@ -1,5 +1,13 @@
+MAKEINFO=makeinfo
+INC=../../../gcc/doc/include
+
+all: faq/index.txt 17_intro/porting.html
+
faq/index.txt: faq/index.html
- lynx -dump faq/index.html | sed "s%file://localhost`pwd`%..%" > $@
+ lynx -dump $< | sed "s%file://localhost`pwd`%..%" > $@
+
+17_intro/porting.html: 17_intro/porting.texi
+ ${MAKEINFO} -I ${INC} --html --no-split $< -o $@