diff options
author | Jeffrey A Law <law@cygnus.com> | 1999-07-25 21:26:16 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-07-25 15:26:16 -0600 |
commit | fcd2e402235a12b0dcfc69cece6eb669bc091ab2 (patch) | |
tree | 9ed7645133358dc8aa569d6ff43e43ef4700ec70 /gcc/cp/Makefile.in | |
parent | 0a35e2fdece90e3f5677b7c69857944da4a5887b (diff) | |
download | gcc-fcd2e402235a12b0dcfc69cece6eb669bc091ab2.zip gcc-fcd2e402235a12b0dcfc69cece6eb669bc091ab2.tar.gz gcc-fcd2e402235a12b0dcfc69cece6eb669bc091ab2.tar.bz2 |
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
Diffstat (limited to 'gcc/cp/Makefile.in')
-rw-r--r-- | gcc/cp/Makefile.in | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/gcc/cp/Makefile.in b/gcc/cp/Makefile.in index d876a14..edd3379 100644 --- a/gcc/cp/Makefile.in +++ b/gcc/cp/Makefile.in @@ -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 - |