Commit fcd2e402 by Jeffrey A Law Committed by Jeff Law

g++FAQ.texi: Deleted per Joe Buck's request.


        * g++FAQ.texi: Deleted per Joe Buck's request.
        * Makefile.in: Corresponding changes.

From-SVN: r28238
parent 0a35e2fd
Sun Jul 25 15:24:21 1999 Jeffrey A Law (law@cygnus.com)
* g++FAQ.texi: Deleted per Joe Buck's request.
* Makefile.in: Corresponding changes.
1999-07-23 Jason Merrill <jason@yorick.cygnus.com>
* lex.c: Sync with C frontend.
......
......@@ -322,32 +322,3 @@ TAGS: force
.PHONY: TAGS
force:
g++FAQ.info: $(srcdir)/g++FAQ.texi
$(MAKEINFO) --no-split -o ./g++FAQ.info $(srcdir)/g++FAQ.texi
# Preprocess the texi file so that the final document will have
# hyperlinks.
# It would be nice if texi2html could do something like this itself.
# Assumption 1: the FAQ puts all http: and ftp: links in a @file{...}.
# Assumption 2: newsgroups are like @file{comp.foo}
# Assumption 3: email addresses match the regexp shown.
g++FAQ.html: $(srcdir)/g++FAQ.texi
mkdir work
sed -e 's?@file{\([fth]*p://[^}]*\)}?@strong{<A HREF="\1">\1</A>}?' \
-e 's?@file{\(comp\.[-a-z+.]*\)}?<A HREF="news:\1">\1</A>?' \
-e 's?@file{\(gnu\.[-a-z+.]*\)}?<A HREF="news:\1">\1</A>?' \
-e 's?\([.+a-zA-Z0-9-]*@@[.a-zA-Z0-9-]*[a-zA-Z0-9]\)?<A HREF="mailto:\1">\1</A>?' \
$(srcdir)/g++FAQ.texi > work/g++FAQ.texi
cd work; texi2html g++FAQ.texi
mv work/*.html .
rm -r work
# Make plain-text form.
g++FAQ.txt: $(srcdir)/g++FAQ.texi
$(MAKEINFO) --no-split --no-headers -o - $(srcdir)/g++FAQ.texi |\
sed '/^Concept Index/,$$d' > g++FAQ.txt
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment