# 	Generate TeX
#

W = ..
H = $(W)/..
TEX = ../Tools/TeX
GEN = ../Tools/HTMLGeneration
# for Arthur's testings
T = /users/secret/common/test

# 	ENTEX = sed -f html2latex.sed
LEVEL0 = sed -f $(TEX)/sub0.sed
FIRST0 = cat
LEVEL1 = sed -f $(TEX)/sub1.sed
LEVEL2 = sed -f $(TEX)/sub2.sed
LEVEL3 = sed -f $(TEX)/sub3.sed
LISTING = sed -f $(GEN)/txt2html.sed
XMP = sed -s $(TEX)/xmp.sed

TMP = /tmp/temp.html
TMPD = /tmp/daemon.html

#  What suffix to use for combined html files.
#  Allows us to distinguish combined from originals when editing this file
HTMLS = .html

#	The htmls type is an aglommeration of html files.

.SUFFIXES:
.SUFFIXES: .txt .ps .dvi .tex $(HTMLS)
#.SUFFIXES: $(HTMLS) .txt .tex .dvi .ps

.dvi.ps :
#	dvips -o $@ $<
	dvips2e -o $@ $<

#	Run TeX twice first to get the table of contents.
.tex.dvi :
	latex $<
	latex $<

$(HTMLS).tex :
	rm -f $@
	sed -f $(TEX)/html_clean.sed $< \
	| sed -f $(TEX)/html2cernman.sed > $*.temp
#	sed -f $(TEX)/html_clean.sed $< \
#	| sed -f $(TEX)/html2rfc.sed > $*.temp
	cat $*.head $*.temp > $@
	sed -e '/documentstyle/s/times/cerndoc/' < $@ > $*-plain.tex


$(HTMLS).txt :
	-rm junk.html
	cat $*-plainhead.html $< \
	  | sed -f $(TEX)/strip-title.sed > junk.html
	www -n -na -p54 -w70 junk.html | awk -f $*-plain.awk > $@


#	-cp $@ /pub/www/doc/$@

all :	http-spec.txt http-spec.ps \
	line-mode-guide.txt line-mode-guide.ps \
	html-spec.txt html-spec.ps \
	cvs-rcs.txt cvs-rcs.ps \
	cern-www-conditions.ps cern-www-conditions.txt \
	www-server-guide.ps www-server-guide.txt

clean :
	rm *.dvi *.log *.aux *.toc  *.temp


#		Checking for files we have missed
#		---------------------------------

html-files :
	find $(H) \! -perm -4 -prune -o -name "*.html" \! -name ",*" -print \
		> html-files
www-html-files :
	find $(W) \! -perm -4 -prune -o -name "*.html" \! -name ",*" -print \
		> $@
UP = \.\.\/
html-files2 : html-files Makefile
	sed -e 's?$(UP)$(UP)WWW/?$$(W)/?g' html-files \
	| sed -e 's?$(UP)$(UP)?$$(H)/?g' > $@

missing-files : html-files2
	-rm missing-files.bak
	-mv missing-files missing-files.bak
	grep '$$(W)' html-files2 | $(TEX)/find-missing | sort > missing-files


##	Testing
#	-------

test$(HTMLS):
	$(FIRST0)   $(T)/bdgtti-intro.html > $@
	$(LEVEL0)   $(T)/bdgtti-1.03_toc.html >> $@
	$(LEVEL0)   $(T)/bdgtti-1.03_1.html >> $@
	$(LEVEL1)   $(T)/bdgtti-1.03_2.html >> $@
	$(LEVEL1)   $(T)/bdgtti-1.03_3.html >> $@
	$(LEVEL1)   $(T)/bdgtti-1.03_4.html >> $@
	$(LEVEL1)   $(T)/bdgtti-1.03_5.html >> $@
	$(LEVEL1)   $(T)/bdgtti-1.03_6.html >> $@
	$(LEVEL1)   $(T)/bdgtti-1.03_7.html >> $@
	$(LEVEL1)   $(T)/bdgtti-1.03_8.html >> $@
	$(LEVEL1)   $(T)/bdgtti-1.03_9.html >> $@
	$(LEVEL1)   $(T)/bdgtti-1.03_10.html >> $@
	$(LEVEL1)   $(T)/bdgtti-1.03_11.html >> $@
	$(LEVEL1)   $(T)/bdgtti-1.03_12.html >> $@
	$(LEVEL1)   $(T)/bdgtti-1.03_13.html >> $@
	$(LEVEL1)   $(T)/bdgtti-1.03_14.html >> $@
	$(LEVEL1)   $(T)/bdgtti-1.03_15.html >> $@
	$(LEVEL1)   $(T)/bdgtti-1.03_16.html >> $@
	$(LEVEL1)   $(T)/bdgtti-1.03_17.html >> $@
	$(LEVEL1)   $(T)/bdgtti-1.03_18.html >> $@
	$(LEVEL1)   $(T)/bdgtti-1.03_19.html >> $@
	$(LEVEL1)   $(T)/bdgtti-1.03_20.html >> $@
	$(LEVEL1)   $(T)/bdgtti-1.03_21.html >> $@
	$(LEVEL1)   $(T)/bdgtti-1.03_22.html >> $@
	$(LEVEL1)   $(T)/bdgtti-1.03_23.html >> $@
	$(LEVEL1)   $(T)/bdgtti-1.03_24.html >> $@
	$(LEVEL1)   $(T)/bdgtti-1.03_25.html >> $@
	$(LEVEL1)   $(T)/bdgtti-1.03_26.html >> $@
	$(LEVEL1)   $(T)/bdgtti-1.03_27.html >> $@
	$(LEVEL1)   $(T)/bdgtti-1.03_28.html >> $@
	$(LEVEL1)   $(T)/bdgtti-1.03_29.html >> $@
	$(LEVEL1)   $(T)/bdgtti-1.03_30.html >> $@
	$(LEVEL1)   $(T)/bdgtti-1.03_31.html >> $@
	$(LEVEL1)   $(T)/bdgtti-1.03_32.html >> $@
	$(LEVEL1)   $(T)/bdgtti-1.03_33.html >> $@
	$(LEVEL0)   $(T)/bdgtti-1.03_foot.html >> $@


test.tex : $(TEX)/html2cernman.sed test$(HTMLS)
test.dvi : test.tex
test.ps : test.dvi
test.txt : test$(HTMLS)



##	HTTP2 Protocol
#       --------------

http-spec$(HTMLS) :
	$(FIRST0)   $(W)/Protocols/HTTP/HTTP2.html > $@ 
	$(LEVEL0)   $(W)/Protocols/HTTP/Request.html >> $@   
	$(LEVEL1)     $(W)/Protocols/HTTP/Methods.html >> $@
	$(LEVEL3)	   $(W)/Protocols/HTTP/NoteMethodCS.html  >> $@
	$(LEVEL2)       $(W)/Protocols/HTTP/Methods/Get.html >> $@
	$(LEVEL3)	   $(W)/Protocols/HTTP/Methods/GetSearches.html  >> $@
	$(LEVEL2)	 $(W)/Protocols/HTTP/Methods/Link.html  >> $@
	$(LEVEL2)	 $(W)/Protocols/HTTP/Methods/Post.html  >> $@
	$(LEVEL2)	 $(W)/Protocols/HTTP/Methods/Search.html  >> $@
	$(LEVEL2)        $(W)/Protocols/HTTP/Methods/ShowMethod.html >> $@
	$(LEVEL2)        $(W)/Protocols/HTTP/Methods/SpaceJump.html >> $@
	$(LEVEL2)        $(W)/Protocols/HTTP/Methods/TextSearch.html >> $@
	$(LEVEL2)	 $(W)/Protocols/HTTP/Methods/Unlink.html  >> $@
	$(LEVEL1)     $(W)/Protocols/HTTP/HTRQ_Headers.html >> $@
	$(LEVEL1)     $(W)/Protocols/HTTP/OldClients.html >> $@
	$(LEVEL0)   $(W)/Protocols/HTTP/Response.html >> $@   
	$(LEVEL1)     $(W)/Protocols/HTTP/HTRESP.html >> $@
	$(LEVEL1)     $(W)/Protocols/HTTP/Object_Headers.html >> $@
	$(LEVEL1)     $(W)/Protocols/HTTP/OldServers.html >> $@
	$(LEVEL0)   $(W)/Protocols/HTTP/Negotiation.html >> $@
	$(LEVEL1)	 $(W)/Protocols/HTTP/NegotiationA.html  >> $@
	$(LEVEL1)     $(W)/Protocols/HTTP/TimeCost.html >> $@
	$(LEVEL0)   $(W)/Protocols/HTTP/RegistrationAuthority.html >> $@
	$(LEVEL0)   $(W)/Protocols/HTTP/Security.html  >> $@
	$(LEVEL0)   $(W)/Protocols/HTTP/References.html >> $@

	$(LEVEL2)	 $(W)/Protocols/HTTP/Body.html  >> $@
#	$(LEVEL2)	 $(W)/Protocols/HTTP/Presentation/Methods.html  >> $@
#	$(LEVEL2)	 $(W)/Protocols/HTTP/Presentation/Object.html  >> $@
#	$(LEVEL2)	 $(W)/Protocols/HTTP/Presentation/Request.html  >> $@
#	$(LEVEL2)	 $(W)/Protocols/HTTP/Presentation/Response.html  >> $@
#	$(LEVEL2)	 $(W)/Protocols/HTTP/Presentation/http_rq.html  >> $@

#	$(LEVEL1)     $(W)/Protocols/HTTP/old_Reasons.html >> $@

http-spec.tex : $(TEX)/html2cernman.sed http-spec$(HTMLS) http-spec.head
http-spec.dvi : http-spec.tex
http-spec.ps : http-spec.dvi
http-spec.txt : http-spec$(HTMLS) http-spec-plainhead.html



##	The W3 Book
#
the-www-book$(HTMLS) :
	$(FIRST0)   $(W)/TheW3Book.html > $@
	$(LEVEL1)     $(W)/Summary.html >> $@
	$(LEVEL1)     $(W)/People.html >> $@
	$(LEVEL1)     $(W)/Policy.html >> $@
	$(LEVEL2)     ../../README.html >>$@
	$(LEVEL2)     ../../Copyright.html >>$@
	$(LEVEL2)     $(W)/Paper/PaperManuals.html  >> $@
	$(LEVEL0)   $(W)/FAQ/List.html >> $@
	$(LEVEL1)     $(W)/FAQ/Bootstrap.html >> $@
	$(LEVEL1)     $(W)/FAQ/KeepingTrack.html >> $@
	$(LEVEL1)     $(W)/FAQ/WAISandGopher.html >> $@
	$(LEVEL1)     $(W)/FAQ/Server.html >> $@
	$(LEVEL1)     $(W)/FAQ/NoInternet.html >> $@
	$(LEVEL1)     $(W)/FAQ/Firewall.html  >> $@
#	$(LEVEL1)     $(W)/History.html >> $@
	$(LEVEL0)   $(W)/Helping.html >>$@
	$(LEVEL1)     $(W)/Bugs.html >>$@
	$(LEVEL1)     $(W)/Provider/Overview.html >> $@
	$(LEVEL1)     $(W)/Provider/Etiquette.html >>$@
	$(LEVEL1)     $(W)/Provider/AnonymousFTP.html >> $@
	$(LEVEL0)   $(W)/Technical.html >> $@
	$(LEVEL0)   $(W)/DesignIssues/Overview.html >> $@
	$(LEVEL1)     $(W)/DesignIssues/Uses.html >> $@
	$(LEVEL1)     $(W)/DesignIssues/Availability.html >> $@
	$(LEVEL1)     $(W)/DesignIssues/Navigation.html >> $@
	$(LEVEL2)       $(W)/DesignIssues/ManyIndexes.html >> $@
	$(LEVEL1)     $(W)/DesignIssues/TracingLinks.html >> $@
	$(LEVEL2)	 $(W)/DesignIssues/Intelligent_Navigation.html  >> $@
	$(LEVEL2)	 $(W)/DesignIssues/LinkToLiving/Altis1.html  >> $@
	$(LEVEL2)	 $(W)/DesignIssues/MOO-WWW.html  >> $@
	$(LEVEL1)     $(W)/DesignIssues/Versioning.html >> $@
	$(LEVEL1)     $(W)/DesignIssues/Multiuser.html >> $@
	$(LEVEL2)       $(W)/DesignIssues/Annotation.html >> $@
	$(LEVEL1)     $(W)/DesignIssues/Notification.html >> $@
	$(LEVEL1)     $(W)/DesignIssues/Topology.html >> $@
	$(LEVEL1)     $(W)/DesignIssues/LinkTypes.html >> $@
	$(LEVEL1)     $(W)/DesignIssues/Naming.html >> $@
	$(LEVEL1)     $(W)/DesignIssues/Formats.html >> $@
	$(LEVEL1)     $(W)/DesignIssues/Caching.html >> $@
	$(LEVEL1)     $(W)/DesignIssues/Preece.html >> $@
	$(LEVEL0)   $(W)/Protocols/RelevantProtocols.html >> $@
	$(LEVEL1)     $(W)/Protocols/HTTP/AsImplemented.html >> $@
	$(LEVEL1)     $(W)/Protocols/HTTP.html >> $@
	$(LEVEL2)       $(W)/Protocols/Penalties.html >> $@
	$(LEVEL1)     $(W)/Protocols/WhyHTTP.html >> $@
#	$(LEVEL1)     $(W)/Protocols/HTTP/HTRQ_Headers.html >> $@
#	$(LEVEL1)     $(W)/Protocols/HTTP/Object_Headers.html >> $@
#	$(LEVEL1)     $(W)/Protocols/HTTP/old_HTRESP.html >> $@
#	$(LEVEL1)     $(W)/Protocols/HTTP/Reasons.html >> $@
#	$(LEVEL1)     $(W)/Protocols/HTTP/Negotiation.html >> $@
#	$(LEVEL1)     $(W)/Protocols/HTTP/TimeCost.html >> $@
#	$(LEVEL1)     $(W)/Protocols/HTTP/OldServers.html >> $@
#	$(LEVEL1)     $(W)/Protocols/HTTP/OldClients.html >> $@
#	$(LEVEL1)     $(W)/Protocols/HTTP/RegistrationAuthority.html >> $@
	$(LEVEL0)   $(W)/Addressing/Addressing.html >> $@
	$(LEVEL1)     $(W)/Addressing/Search.html >> $@
	$(LEVEL1)     $(W)/Addressing/FileAddressing.html >> $@
	$(LEVEL1)     $(W)/Addressing/NewsAddressing.html >> $@
	$(LEVEL1)     $(W)/Addressing/Relative.html >> $@
	$(LEVEL1)     $(W)/Addressing/HTTPAddressing.html >> $@
	$(LEVEL1)     $(W)/Addressing/TelnetAddressing.html >> $@
	$(LEVEL1)     $(W)/Addressing/BNF.html >> $@
	$(LEVEL1)     $(W)/Addressing/Escaping.html >> $@
	$(LEVEL1)     $(W)/Addressing/GopherAddressing.html >> $@
	$(LEVEL1)     $(W)/Addressing/WAISAddressing.html >> $@
	$(LEVEL0)   $(W)/MarkUp/MarkUp.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Tags.html >> $@
	$(LEVEL1)     $(W)/MarkUp/SGML.html >> $@
	$(LEVEL2)     $(W)/MarkUp/AAP.html >> $@
#	$(LISTING)	$(W)/MarkUp/HTML.dtd >> $@
#	$(LEVEL1)     $(W)/MarkUp/HTRQ/Profile.html >> $@
#	$(LEVEL1)     $(W)/MarkUp/HTRQ/Request.html >> $@
#	$(LEVEL1)     $(W)/MarkUp/HTRQ.html >> $@
#	$(LEVEL1)     $(W)/MarkUp/HTML2.html >> $@
#	$(LEVEL1)     $(W)/MarkUp/zStrings.html >> $@
	$(LEVEL1)     $(W)/MarkUp/HTMLConstraints.html >> $@
	$(LEVEL0)   $(W)/Architecture/BrowserOverview.html >> $@
	$(LEVEL1)     $(W)/Architecture/Anchors.html >> $@
	$(LEVEL1)     $(W)/Architecture/UtilityOverview.html >> $@
	$(LEVEL1)     $(W)/Architecture/BrowserOperation.html >> $@
	$(LEVEL1)     $(W)/Architecture/Authorization.html >> $@
#	$(LEVEL1)     $(W)/Architecture/Letter_1.html >> $@
	$(LEVEL0)   $(W)/Project/Coding.html >> $@
	$(LEVEL1)     $(W)/Project/Language.html >> $@
	$(LEVEL1)     $(W)/Project/ModuleHeader.html >> $@
	$(LEVEL2)       $(W)/Project/Ex_ModuleHeader.html >> $@
	$(LEVEL1)     $(W)/Project/Headings.html >> $@
	$(LEVEL2)       $(W)/Project/Ex_Heading.html >> $@
	$(LEVEL1)     $(W)/Project/Body.html >> $@
	$(LEVEL1)     $(W)/Project/Identifiers.html >> $@
	$(LEVEL1)     $(W)/Project/Directories.html >> $@
	$(LEVEL1)     $(W)/Project/IncludeFiles.html >> $@
	$(LEVEL1)     $(W)/Project/Macros.html >> $@
#	$(LEVEL1)     $(W)/Project/Modules.html >> $@
	$(LEVEL1)     $(W)/Project/UseOfCVS.html >> $@

the-www-book.tex : $(TEX)/html2cernman.sed the-www-book$(HTMLS)
the-www-book.dvi : the-www-book.tex
the-www-book.ps : the-www-book.dvi
the-www-book.txt : the-www-book$(HTMLS)


#	LINE MODE BROWSER USER GUIDE

line-mode-guide$(HTMLS) :
	$(FIRST0)   $(W)/LineMode/PaperManual.html > $@
	$(LEVEL1)     $(W)/Paper/PaperFromHypertext.html >> $@
	$(LEVEL0)   $(W)/LineMode/Defaults/QuickGuide.html >> $@
	$(LEVEL1)     $(W)/LineMode/Status.html >> $@
	$(LEVEL1)     $(W)/LineMode/Defaults/CommandLine.html >> $@
	$(LEVEL1)     $(W)/LineMode/Defaults/Commands.html >> $@
	$(LEVEL2)     $(W)/LineMode/Defaults/SourceExamples.html >> $@
#	$(LEVEL1)     $(W)/LineMode/Defaults/UsingAliases.html >> $@
	$(LEVEL1)     $(W)/LineMode/Defaults/Shortcuts.html >> $@
	$(LEVEL2)       $(W)/LineMode/Defaults/VMS_Shortcuts.html >> $@
	$(LEVEL0)   $(W)/LineMode/Defaults/Customisation.html >> $@
	$(LEVEL1)     $(W)/LineMode/Defaults/NewsServer.html >> $@
	$(LEVEL1)     $(W)/LineMode/Defaults/EnvVariables.html >> $@
	$(LEVEL2)       $(W)/LineMode/Defaults/GlobalV.html >> $@
	$(LEVEL0)   $(W)/LineMode/Defaults/Installation.html >> $@
	$(LEVEL1)     $(W)/LineMode/Defaults/InstallNotSU.html >> $@
	$(LEVEL2)       $(W)/LineMode/Defaults/Path.html >> $@
	$(LEVEL2)       $(W)/LineMode/Defaults/LoginScript.html >> $@
	$(LEVEL1)     $(W)/LineMode/Defaults/Installation_VMS.html >> $@
	$(LEVEL2)       $(W)/LineMode/Defaults/Installation_VMS_NewTCP.html >> $@
	$(LEVEL1)     $(W)/LineMode/Defaults/Distribution.html >> $@
	$(LEVEL1)     $(W)/LineMode/Defaults/Porting.html >> $@
	$(LEVEL2)       $(W)/LineMode/Defaults/MachineTypes.html >> $@
#	$(LEVEL1)     $(W)/LineMode/Defaults/Features.html >> $@
#	$(LEVEL1)     $(W)/LineMode/Defaults/Bugs.html >> $@
#	$(LEVEL1)     $(W)/LineMode/More.html >> $@

line-mode-guide.tex : $(TEX)/html2cernman.sed line-mode-guide$(HTMLS)
line-mode-guide.dvi : line-mode-guide.tex
line-mode-guide.ps : line-mode-guide.dvi
line-mode-guide.txt : line-mode-guide$(HTMLS)



#		URL Specification
#		-----------------

url-spec$(HTMLS) :
	$(FIRST0)   $(W)/Addressing/URL/1_Summary.html	> $@
	$(LEVEL1)   $(W)/Addressing/URL/2_Terms.html	>> $@
	$(LEVEL1)   $(W)/Addressing/URL/3_Requirements.html	>> $@
	$(LEVEL1)   $(W)/Addressing/URL/4_Recommentations.html	>> $@
	$(LEVEL1)   $(W)/Addressing/URL/4.1_Schemes.html	>> $@
	$(LEVEL2)     $(W)/Addressing/URL/4_1_FTP.html		>> $@
	$(LEVEL2)     $(W)/Addressing/URL/4_1_HTTP.html		>> $@
	$(LEVEL2)     $(W)/Addressing/URL/4_1_Gopher.html	>> $@
	$(LEVEL2)     $(W)/Addressing/URL/4_1_Mailto.html	>> $@
	$(LEVEL2)     $(W)/Addressing/URL/4_1_Mid.html		>> $@
	$(LEVEL2)     $(W)/Addressing/URL/4_1_Cid.html		>> $@
	$(LEVEL2)     $(W)/Addressing/URL/4_1_News.html		>> $@
	$(LEVEL2)     $(W)/Addressing/URL/4_1_NNTP.html		>> $@
	$(LEVEL2)     $(W)/Addressing/URL/4_1_Prospero.html	>> $@
	$(LEVEL2)     $(W)/Addressing/URL/4_1_Telnet.html	>> $@
	$(LEVEL2)     $(W)/Addressing/URL/4_1_WAIS.html		>> $@
#	$(LEVEL2)     $(W)/Addressing/URL/4_1_FurtherStudy.html	>> $@
	$(LEVEL2)     $(W)/Addressing/URL/4_1_Registration.html	>> $@
	$(LEVEL1)   $(W)/Addressing/URL/5_BNF.html	>> $@
	$(LEVEL1)   $(W)/Addressing/URL/6_Security.html	>> $@
	$(LEVEL1)   $(W)/Addressing/URL/7_Conclusion.html	>> $@
	$(LEVEL1)   $(W)/Addressing/URL/8_Acknowledgements.html	>> $@
	$(LEVEL0)   $(W)/Addressing/URL/Appendices.html	>> $@
	$(LEVEL1)   $(W)/Addressing/URL/4_2_Fragments.html	>> $@
	$(LEVEL1)   $(W)/Addressing/URL/4_3_Partial.html	>> $@
	$(LEVEL1)   $(W)/Addressing/URL/5.1_Wrappers.html	>> $@
	$(LEVEL0)   $(W)/Addressing/URL/9_References.html	>> $@

url-spec.tex : $(TEX)/html2cernman.sed url-spec$(HTMLS) url-spec.head
url-spec.dvi : url-spec.tex
url-spec.ps : url-spec.dvi
url-spec.txt : url-spec$(HTMLS) url-spec-plainhead.html


#		URI Specification
#		-----------------

uri-spec$(HTMLS) :
	$(FIRST0)   $(W)/Addressing/URL/1_ID_Disclaimer.html	> $@
	$(LEVEL1)   $(W)/Addressing/URL/1_NeedUniversal.html	>> $@
	$(LEVEL1)   $(W)/Addressing/URL/3_URI_Choices.html	>> $@
	$(LEVEL1)   $(W)/Addressing/URL/4_URI_Recommentations.html	>> $@
	$(LEVEL2)     $(W)/Addressing/URL/4_3_Partial.html	>> $@
	$(LEVEL2)     $(W)/Addressing/URL/4_2_Fragments.html	>> $@
	$(LEVEL1)   $(W)/Addressing/URL/4.1_Schemes.html	>> $@
	$(LEVEL2)     $(W)/Addressing/URL/4_1_FTP.html		>> $@
	$(LEVEL2)     $(W)/Addressing/URL/4_1_HTTP.html		>> $@
	$(LEVEL2)     $(W)/Addressing/URL/4_1_Gopher.html	>> $@
	$(LEVEL2)     $(W)/Addressing/URL/4_1_Mailto.html	>> $@
	$(LEVEL2)     $(W)/Addressing/URL/4_1_Mid.html		>> $@
	$(LEVEL2)     $(W)/Addressing/URL/4_1_Cid.html		>> $@
	$(LEVEL2)     $(W)/Addressing/URL/4_1_News.html		>> $@
	$(LEVEL2)     $(W)/Addressing/URL/4_1_NNTP.html		>> $@
	$(LEVEL2)     $(W)/Addressing/URL/4_1_Prospero.html	>> $@
	$(LEVEL2)     $(W)/Addressing/URL/4_1_Telnet.html	>> $@
	$(LEVEL2)     $(W)/Addressing/URL/4_1_WAIS.html		>> $@
	$(LEVEL2)     $(W)/Addressing/URL/4_1_FurtherStudy.html	>> $@
	$(LEVEL2)     $(W)/Addressing/URL/4_1_Registration.html	>> $@
	$(LEVEL0)   $(W)/Addressing/URL/5_URI_BNF.html	>> $@
	$(LEVEL0)   $(W)/Addressing/URL/9_AuthorsAddress.html	>> $@

uri-spec.tex : $(TEX)/html2cernman.sed uri-spec$(HTMLS) uri-spec.head
uri-spec.dvi : uri-spec.tex
uri-spec.ps : uri-spec.dvi
uri-spec.txt : uri-spec$(HTMLS) uri-spec-plainhead.html


#		HTML Specification
#		------------------


#	$(LEVEL1)    $(W)/MarkUp/Connolly/Current/HTML.dtd.html >> $@
#	$(LEVEL0)  $(W)/MarkUp/MarkUp.html >> $@
#	$(LEVEL1)     $(W)/MarkUp/Text.html >> $@


html-spec$(HTMLS) :
	$(FIRST0)   $(W)/MarkUp/HTML.html > $@
	$(LEVEL1)     $(W)/MarkUp/StatusMeanings.html >> $@
	$(LEVEL0)   $(W)/MarkUp/AndMIME.html >> $@
	$(LEVEL0)   $(W)/MarkUp/Connolly/Current/Intro.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Text.html >> $@
	$(LEVEL0)   $(W)/MarkUp/Tags.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Elements/HEAD.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Elements/BODY.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Elements/A.html >> $@
	$(LEVEL2)       $(W)/MarkUp/URN.html >> $@
	$(LEVEL2)       $(W)/MarkUp/Elements/LinkTitle.html >> $@
	$(LEVEL2)       $(W)/MarkUp/Elements/LinkMethods.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Elements/ADDRESS.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Elements/BASE.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Elements/BR.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Elements/BLOCKQUOTE.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Headings.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Elements/HR.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Elements/IMG.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Elements/ISINDEX.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Elements/LINK.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Lists.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Elements/NEXTID.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Elements/P.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Elements/PRE.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Elements/TITLE.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Highlighting.html >> $@
	$(LEVEL1)     $(W)/MarkUp/NonStandard.html >> $@
	$(LEVEL2)       $(W)/MarkUp/LiteralHistory.html >> $@
	$(LEVEL0)   $(W)/MarkUp/Entities.html >> $@
	$(LEVEL1)     $(W)/MarkUp/ISOlat1.html >> $@
	$(LEVEL0)   $(W)/MarkUp/DTDHeading.html >> $@
	$(LEVEL1)     $(W)/MarkUp/HTML.dtd.html >> $@
	$(LEVEL0)   $(W)/MarkUp/Relationships.html >> $@
	$(LEVEL0)   $(W)/MarkUp/RegistrationAuthority.html >> $@
	$(LEVEL0)   $(W)/MarkUp/Acknowledgements.html >> $@
	$(LEVEL0)   $(W)/MarkUp/References.html >> $@
	$(LEVEL0)   $(W)/MarkUp/Authors.html >> $@

#	$(LEVEL1)     $(W)/MarkUp/Elements/UL.html >> $@
#	$(LEVEL1)     $(W)/MarkUp/Elements/DL.html >> $@
#	$(LEVEL1)     $(W)/MarkUp/LiteralHistory.html >> $@
#	$(LEVEL1)     $(W)/MarkUp/FindingExamples.html >> $@
#	$(LEVEL1)     $(W)/MarkUp/AboutTags.html >> $@
#	$(LEVEL1)     $(W)/MarkUp/Connolly/History.html >> $@
#	$(LEVEL1)     $(W)/MarkUp/Connolly/930106/HTML.html >> $@
#	$(LEVEL1)     $(W)/MarkUp/Connolly/930106/Text.html >> $@
#	$(LEVEL1)     $(W)/MarkUp/Connolly/930106/recommended.html >> $@
#	$(LEVEL1)     $(W)/MarkUp/Connolly/930106/complete.html >> $@
#	$(LEVEL1)     $(W)/MarkUp/Connolly/930106/tolerated.html >> $@
#	$(LEVEL1)     $(W)/MarkUp/Connolly/930106/errors.html >> $@
#	$(LEVEL1)     $(W)/MarkUp/Connolly/930106/supported.html >> $@
#	$(LEVEL1)     $(W)/MarkUp/Future.html >> $@
#	$(LEVEL1)     $(W)/MarkUp/Davenport/Overview.html >> $@
#	$(LEVEL1)     $(W)/MarkUp/SGML/Darmstadt.html >> $@

html-spec.tex : $(TEX)/html2cernman.sed html-spec$(HTMLS) http-spec.head
html-spec.dvi : html-spec.tex
html-spec.ps : html-spec.dvi
html-spec.txt : html-spec$(HTMLS) html-spec-plainhead.html


#
#	cern_httpd Guide
#

cern-httpd-guide$(HTMLS) :
	$(FIRST0)  $(W)/Daemon/User/Guide.html				>  $@
	$(LEVEL1)    $(W)/Paper/PaperFromHypertext.html 		>> $@
	$(LEVEL0)  $(W)/Daemon/User/Installation/Installation.html	>> $@
#	$(LEVEL1)    $(W)/Daemon/User/Installation/Compilation.html	>> $@
	$(LEVEL1)    $(W)/Daemon/User/Installation/Inetd.html		>> $@
	$(LEVEL2)      $(W)/Daemon/User/Installation/Using_YP.html	>> $@
	$(LEVEL2)      $(W)/Daemon/User/Installation/NetInfo.html	>> $@
	$(LEVEL1)    $(W)/Daemon/User/Installation/PrivilegedPorts.html	>> $@
	$(LEVEL1)    $(W)/Daemon/User/Debug/Debugging.html		>> $@
	$(LEVEL2)      $(W)/Daemon/User/Debug/DebugServer.html		>> $@
	$(LEVEL2)      $(W)/Daemon/User/Debug/TelnetToServer.html	>> $@
	$(LEVEL0)  $(W)/Daemon/User/CommandLine.html 			>> $@
	$(LEVEL0)  $(W)/Daemon/User/Config/Overview.html		>> $@
	$(LEVEL1)    $(W)/Daemon/User/Config/General.html		>> $@
	$(LEVEL1)    $(W)/Daemon/User/Config/Rules.html			>> $@
	$(LEVEL1)    $(W)/Daemon/User/Config/Suffixes.html		>> $@
	$(LEVEL1)    $(W)/Daemon/User/Config/Accessories.html		>> $@
	$(LEVEL1)    $(W)/Daemon/User/Config/Directories.html		>> $@
	$(LEVEL1)    $(W)/Daemon/User/Config/Icons.html			>> $@
	$(LEVEL1)    $(W)/Daemon/User/Config/Logging.html		>> $@
	$(LEVEL1)    $(W)/Daemon/User/Config/TimeOuts.html		>> $@
	$(LEVEL1)    $(W)/Daemon/User/Config/Caching.html		>> $@
	$(LEVEL1)    $(W)/Daemon/User/Proxies/ManyProxies.html		>> $@
	$(LEVEL0)  $(W)/Daemon/User/Config/Examples.html		>> $@
	$(LEVEL1)    $(W)/Daemon/User/Config/AllExamples.html		>> $@
	$(LEVEL0)  $(W)/Daemon/User/CGI/Overview.html 			>> $@
	$(LEVEL0)  $(W)/Daemon/User/CGI/cgiparse.html			>> $@
	$(LEVEL0)  $(W)/Daemon/User/CGI/cgiutils.html			>> $@
	$(LEVEL0)  $(W)/Daemon/User/CGI/HTImageDoc.html 		>> $@
	$(LEVEL0)  $(W)/Daemon/User/Config/AccessAuth.html		>> $@
	$(LEVEL1)    $(W)/Daemon/User/HTAdmDoc.html			>> $@
	$(LEVEL0)  $(W)/Daemon/User/Proxies/Proxies.html 		>> $@
	$(LEVEL1)    $(W)/Daemon/User/Proexies/ProxyClients.html	>> $@
	$(LEVEL0)  $(W)/Daemon/User/FAQ.html				>> $@
	$(LEVEL0)  $(W)/Daemon/User/ReleaseNotes_2.15.html		>> $@
	$(LEVEL0)  $(W)/Daemon/User/ReleaseNotes_2.16.html		>> $@
	$(LEVEL0)  $(W)/Daemon/User/ReleaseNotes_2.17.html		>> $@
	$(LEVEL0)  $(W)/Daemon/User/ReleaseNotes_2.18.html		>> $@
	$(LEVEL0)  $(W)/Daemon/User/ReleaseNotes_3.0pre.html		>> $@

cern-httpd-guide.tex : $(TEX)/html2cernman.sed cern-httpd-guide$(HTMLS)
cern-httpd-guide.dvi : cern-httpd-guide.tex
cern-httpd-guide.ps : cern-httpd-guide.dvi
cern-httpd-guide.txt : cern-httpd-guide$(HTMLS)



#	About Servers
#	-------------

www-server-guide$(HTMLS) :
	$(FIRST0)  $(W)/Daemon/User/Guide.html				>  $@
	$(LEVEL1)    $(W)/Paper/PaperFromHypertext.html 		>> $@
	$(LEVEL0)  $(W)/Daemon/User/Installation/Installation.html	>> $@
	$(LEVEL1)    $(W)/Daemon/User/Installation/Compilation.html	>> $@
	$(LEVEL1)    $(W)/Daemon/User/Installation/Inetd.html		>> $@
	$(LEVEL2)      $(W)/Daemon/User/Installation/Using_YP.html	>> $@
	$(LEVEL2)      $(W)/Daemon/User/Installation/NetInfo.html	>> $@
	$(LEVEL1)    $(W)/Daemon/User/Installation/PrivilegedPorts.html	>> $@
	$(LEVEL1)    $(W)/Daemon/User/Debug/DebugServer.html		>> $@
	$(LEVEL2)      $(W)/Daemon/User/Debug/TelnetToServer.html	>> $@
	$(LEVEL2)      $(W)/Daemon/User/Debug/Debugging.html		>> $@
	$(LEVEL0)  $(W)/Daemon/User/CommandLine.html 			>> $@
	$(LEVEL0)  $(W)/Daemon/User/Config/Overview.html		>> $@
	$(LEVEL1)    $(W)/Daemon/User/Config/General.html		>> $@
	$(LEVEL1)    $(W)/Daemon/User/Config/Rules.html			>> $@
	$(LEVEL1)    $(W)/Daemon/User/Config/Suffixes.html		>> $@
	$(LEVEL1)    $(W)/Daemon/User/Config/Accessories.html		>> $@
	$(LEVEL1)    $(W)/Daemon/User/Config/Directories.html		>> $@
	$(LEVEL1)    $(W)/Daemon/User/Config/Icons.html			>> $@
	$(LEVEL1)    $(W)/Daemon/User/Config/Logging.html		>> $@
	$(LEVEL1)    $(W)/Daemon/User/Config/TimeOuts.html		>> $@
	$(LEVEL1)    $(W)/Daemon/User/Config/Caching.html		>> $@
	$(LEVEL1)    $(W)/Daemon/User/Proxies/ManyProxies.html		>> $@
	$(LEVEL0)  $(W)/Daemon/User/Config/Examples.html		>> $@
	$(LEVEL0)  $(W)/Daemon/User/CGI/Overview.html 			>> $@
	$(LEVEL1)    $(W)/Daemon/User/CGI/cgiparse.html			>> $@
	$(LEVEL1)    $(W)/Daemon/User/CGI/cgiutils.html			>> $@
	$(LEVEL0)  $(W)/Daemon/User/CGI/HTImageDoc.html 		>> $@
	$(LEVEL0)  $(W)/Daemon/User/Config/AccessAuth.html		>> $@
	$(LEVEL1)    $(W)/Daemon/User/HTAdmDoc.html			>> $@
	$(LEVEL0)  $(W)/Daemon/User/Proxies/Proxies.html 		>> $@
	$(LEVEL1)    $(W)/Daemon/User/Proexies/ProxyClients.html	>> $@
	$(LEVEL0)  $(W)/Daemon/User/FAQ.html				>> $@
	$(LEVEL0)  $(W)/Daemon/User/ReleaseNotes_2.15.html		>> $@
	$(LEVEL0)  $(W)/Daemon/User/ReleaseNotes_2.16.html		>> $@
	$(LEVEL0)  $(W)/Daemon/User/ReleaseNotes_2.17.html		>> $@
	$(LEVEL1)     $(W)/AccessAuthorization/Overview.html  >> $@
	$(LEVEL2)	 $(W)/AccessAuthorization/AccessControlList.html  >> $@
	$(LEVEL2)	 $(W)/AccessAuthorization/Basic.html  >> $@
	$(LEVEL2)	 $(W)/AccessAuthorization/BasicDiscussion.html  >> $@
	$(LEVEL2)	 $(W)/AccessAuthorization/BasicStep0.html  >> $@
	$(LEVEL2)	 $(W)/AccessAuthorization/BasicStep1.html  >> $@
	$(LEVEL2)	 $(W)/AccessAuthorization/BasicStep2.html  >> $@
	$(LEVEL2)	 $(W)/AccessAuthorization/Browser.html  >> $@
	$(LEVEL2)	 $(W)/AccessAuthorization/FingerHole.html  >> $@
	$(LEVEL2)	 $(W)/AccessAuthorization/GroupFile.html  >> $@
	$(LEVEL2)	 $(W)/AccessAuthorization/LinkDiscussion.html  >> $@
	$(LEVEL2)	 $(W)/AccessAuthorization/NEWSTUFF.html  >> $@
	$(LEVEL2)	 $(W)/AccessAuthorization/Notes.html  >> $@
	$(LEVEL2)	 $(W)/AccessAuthorization/PasswordDiscussion.html  >> $@
	$(LEVEL2)	 $(W)/AccessAuthorization/PasswordFile.html  >> $@
	$(LEVEL2)	 $(W)/AccessAuthorization/Possibilities.html  >> $@
	$(LEVEL2)	 $(W)/AccessAuthorization/Pubkey.html  >> $@
	$(LEVEL2)	 $(W)/AccessAuthorization/PubkeyDiscussion.html  >> $@
	$(LEVEL2)	 $(W)/AccessAuthorization/PubkeyStep0.html  >> $@
	$(LEVEL2)	 $(W)/AccessAuthorization/PubkeyStep1.html  >> $@
	$(LEVEL2)	 $(W)/AccessAuthorization/PubkeyStep2.html  >> $@
	$(LEVEL2)	 $(W)/AccessAuthorization/PubkeyStep3.html  >> $@
	$(LEVEL2)	 $(W)/AccessAuthorization/PubkeyStep4.html  >> $@
	$(LEVEL2)	 $(W)/AccessAuthorization/Rabin.html  >> $@
	$(LEVEL2)	 $(W)/AccessAuthorization/RuleFile.html  >> $@
	$(LEVEL2)	 $(W)/AccessAuthorization/Server.html  >> $@
	$(LEVEL2)	 $(W)/AccessAuthorization/ServerKeyDiscussion.html  >> $@
	$(LEVEL2)	 $(W)/AccessAuthorization/ServersOnOtherPorts.html  >> $@
	$(LEVEL2)	 $(W)/AccessAuthorization/TableOfContents.html  >> $@
	$(LEVEL2)	 $(W)/AccessAuthorization/Uuencode.html  >> $@
	$(LEVEL2)	 $(W)/AccessAuthorization/Vocabulary.html  >> $@
	$(LEVEL2)	 $(W)/AccessAuthorization/XOR.html  >> $@
	$(LEVEL2)	 $(W)/AccessAuthorization/rfc1421.html  >> $@
	$(LEVEL0)   $(W)/Provider/ShellScript.html >> $@
	$(LEVEL1)     $(W)/Provider/ServerWriter.html >> $@
	$(LEVEL0)   $(W)/Tools/Overview.html >> $@
	$(LEVEL1)     $(W)/Tools/HTMLGeneration/Overview.html >> $@
	$(LEVEL1)     $(W)/Tools/NewsLists/README.html >> $@
	$(LEVEL1)     $(W)/Tools/HTML-nroff/tmac.html >> $@
	$(LEVEL1)     $(W)/Tools/HTML-LaTeX/Overview.html >> $@
	$(LEVEL0)   $(W)/Daemon/Gateways.html >> $@
	$(LEVEL1)     $(W)/Daemon/Geography/Overview.html >> $@
	$(LEVEL1)     $(W)/Daemon/TechInfoGate.html >> $@
	$(LEVEL1)     $(W)/Daemon/WAISGate.html >> $@
	$(LEVEL1)     $(W)/VMSHelp/Overview.html >> $@
	$(LEVEL2)       $(W)/Daemon/VMSHelpGate.html >> $@
	$(LEVEL2)       $(W)/VMSHelp/Bugs.html >> $@
	$(LEVEL2)       $(W)/VMSHelp/Features.html >> $@
	$(LEVEL0)   $(W)/Provider/Style/Overview.html >> $@
	$(LEVEL1)     $(W)/Provider/Style/Introduction.html >> $@
	$(LEVEL1)     $(W)/Provider/Style/Structure.html >> $@
	$(LEVEL2)       $(W)/Provider/Style/ReaderStructure.html >> $@
	$(LEVEL2)       $(W)/Provider/Style/Trees.html >> $@
	$(LEVEL2)       $(W)/Provider/Style/DocSize.html >> $@
	$(LEVEL1)     $(W)/Provider/Style/WithinDocument.html >> $@
	$(LEVEL2)       $(W)/Provider/Style/SignIt.html >> $@
	$(LEVEL2)       $(W)/Provider/Style/DateIt.html >> $@
	$(LEVEL2)       $(W)/Provider/Style/IntoContext.html >> $@
	$(LEVEL2)       $(W)/Provider/Style/DeviceIndependent.html >> $@
	$(LEVEL2)       $(W)/Provider/Style/Printable.html >> $@
	$(LEVEL1)     $(W)/Provider/Style/Testing.html >> $@
	$(LEVEL1)     $(W)/Provider/Style/WithinDocument.html >> $@
	$(LEVEL1)     $(W)/Provider/Style/References.html >> $@
	$(LEVEL0)   $(W)/MailRobot/Overview.html >> $@
	$(LEVEL1)     $(W)/MailRobot/Help.html >> $@
	$(LEVEL1)     $(W)/MailRobot/Installation.html >> $@
	$(LEVEL1)     $(W)/MailRobot/Status.html >> $@
	$(LEVEL1)     $(W)/MailRobot/Bugs.html >> $@
	$(LEVEL1)     $(W)/MailRobot/Features.html >> $@

www-server-guide.tex : $(TEX)/html2cernman.sed www-server-guide$(HTMLS)
www-server-guide.dvi : www-server-guide.tex
www-server-guide.ps : www-server-guide.dvi
www-server-guide.txt : www-server-guide$(HTMLS)



cern-www-conditions$(HTMLS):
	$(FIRST0)   $(W)/Conditions/Introduction.html > $@
	$(LEVEL1)     $(W)/Conditions/Goals.html >> $@
	$(LEVEL1)     $(W)/Conditions/Audience.html >> $@
	$(LEVEL1)     $(W)/Conditions/Modules.html >> $@
	$(LEVEL0)   $(W)/Conditions/GeneralC.html >> $@
	$(LEVEL0)   $(W)/Conditions/HEPandMembers.html >> $@
	$(LEVEL0)   $(W)/Conditions/Compensated.html >> $@
	$(LEVEL1)     $(W)/Conditions/PriceList.html >> $@
	$(LEVEL0)   $(W)/Conditions/FreeofCharge.html >> $@
#	$(LEVEL1)     $(W)/Conditions/GeneralPublicLicense.html >> $@
#	$(LEVEL1)     $(W)/Conditions/LibraryGeneralPublicLicense.html >> $@
##	$(LEVEL1)     $(W)/Conditions/GPL_Overview.html >> $@
##	$(LEVEL1)     $(W)/Conditions/GPL_Preamble.html >> $@
##	$(LEVEL1)     $(W)/Conditions/LGPL_Overview.html >> $@
##	$(LEVEL1)     $(W)/Conditions/LGPL_Preamble.html >> $@
##	$(LEVEL1)     $(W)/Conditions/LGPL_Applying.html >> $@
	$(LEVEL1)     $(W)/Conditions/Glossary.html >> $@

cern-www-conditions.tex : $(TEX)/html2cernman.sed cern-www-conditions$(HTMLS)
cern-www-conditions.dvi : cern-www-conditions.tex
cern-www-conditions.ps : cern-www-conditions.dvi
cern-www-conditions.txt : cern-www-conditions$(HTMLS)



old-condidtions:
	$(LEVEL1)     $(W)/Conditions/old/Audience.html >> $@
	$(LEVEL1)     $(W)/Conditions/old/Compensated.html >> $@
	$(LEVEL1)     $(W)/Conditions/old/FreeofCharge.html >> $@
	$(LEVEL1)     $(W)/Conditions/old/GeneralC.html >> $@
	$(LEVEL1)     $(W)/Conditions/old/Glossary.html >> $@
	$(LEVEL1)     $(W)/Conditions/old/Goals.html >> $@
	$(LEVEL1)     $(W)/Conditions/old/HEPandMembers.html >> $@
	$(LEVEL1)     $(W)/Conditions/old/Introduction.html >> $@
	$(LEVEL1)     $(W)/Conditions/old/Modules.html >> $@
	$(LEVEL1)     $(W)/Conditions/old/PriceList.html >> $@



# About CVS and RCS

cvs-rcs$(HTMLS) :
	$(FIRST0)   $(W)/Project/CVSmanag.html > $@
	$(LEVEL1)     $(W)/Project/CVSenvvars.html >> $@
	$(LEVEL1)     $(W)/Project/CVSfiles.html >> $@
	$(LEVEL0)   $(W)/Project/RCSman.html >> $@
	$(LEVEL1)     $(W)/Project/RCSrcs.html >> $@
	$(LEVEL1)     $(W)/Project/RCSco.html >> $@
	$(LEVEL1)     $(W)/Project/RCSci.html >> $@
	$(LEVEL1)     $(W)/Project/RCSident.html >> $@
	$(LEVEL1)     $(W)/Project/RCSdiff.html >> $@
	$(LEVEL1)     $(W)/Project/RCSmerge.html >> $@
	$(LEVEL1)     $(W)/Project/RCSrlog.html >> $@
	$(LEVEL1)     $(W)/Project/RCSrcsfile.html >> $@
	$(LEVEL0)   $(W)/Project/CVSman.html >> $@
	$(LEVEL1)     $(W)/Project/CVSman1.html >> $@
	$(LEVEL0)   $(W)/Project/CVSman2.html >> $@
	$(LEVEL1)     $(W)/Project/CVSadd.html >> $@
	$(LEVEL1)     $(W)/Project/CVSadmin.html >> $@
	$(LEVEL1)     $(W)/Project/CVScheckout.html >> $@
	$(LEVEL1)     $(W)/Project/CVScommit.html >> $@
	$(LEVEL1)     $(W)/Project/CVSdiff.html >> $@
	$(LEVEL1)     $(W)/Project/CVSexport.html >> $@
	$(LEVEL1)     $(W)/Project/CVShistory.html >> $@
	$(LEVEL1)     $(W)/Project/CVSimport.html >> $@
	$(LEVEL1)     $(W)/Project/CVSlog.html >> $@
	$(LEVEL1)     $(W)/Project/CVSrdiff.html >> $@
	$(LEVEL1)     $(W)/Project/CVSrelease.html >> $@
	$(LEVEL1)     $(W)/Project/CVSremove.html >> $@
	$(LEVEL1)     $(W)/Project/CVSrtag.html >> $@
	$(LEVEL1)     $(W)/Project/CVSstatus.html >> $@
	$(LEVEL1)     $(W)/Project/CVStag.html >> $@
	$(LEVEL1)     $(W)/Project/CVSupdate.html >> $@
	$(LEVEL0)   $(W)/Project/UseOfCVS.html >> $@


cvs-rcs.tex : $(TEX)/html2cernman.sed cvs-rcs$(HTMLS)
cvs-rcs.dvi : cvs-rcs.tex
cvs-rcs.ps : cvs-rcs.dvi
cvs-rcs.txt : cvs-rcs$(HTMLS)



#	Missing:

missing-oct-94:
	$(LEVEL2)	 $(W)/Clients.html  >> $@
	$(LEVEL2)	 $(W)/Daemon/old/whoindex.html  >> $@
	$(LEVEL2)	 $(W)/EmacsWWW/Status.html  >> $@
	$(LEVEL2)	 $(W)/LibHTML/src/hypertext/HTML.dtd.html  >> $@
	$(LEVEL2)	 $(W)/LibHTML/src/hypertext/HTML.html  >> $@
	$(LEVEL2)	 $(W)/LibHTML/src/hypertext/Intro.html  >> $@
	$(LEVEL2)	 $(W)/LibHTML/src/hypertext/References.html  >> $@
	$(LEVEL2)	 $(W)/LibHTML/src/hypertext/Text.html  >> $@
	$(LEVEL2)	 $(W)/LibHTML/src/test/supported.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTAABrow.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTAAFile.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTAAProt.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTAAServ.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTAAUtil.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTACL.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTAccess.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTAlert.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTAnchor.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTAssoc.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTAtom.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTAuth.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTBTree.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTChunk.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTFTP.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTFWriter.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTFile.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTFormat.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTGopher.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTGroup.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTHistory.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTInit.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTLex.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTList.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTMIME.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTML.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTMLDTD.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTMLGen.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTNews.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTParse.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTPasswd.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTPlain.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTRules.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTStream.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTString.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTStyle.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTTCP.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTTP.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTTelnet.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTUU.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTUtils.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTWAIS.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTWSRC.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HTWriter.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/HText.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/ListOfFiles.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/Overview.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/SGML.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/WWW.html  >> $@
	$(LEVEL2)	 $(W)/Library/Implementation/tcp.html  >> $@
	$(LEVEL2)	 $(W)/Library/Multiformat.html  >> $@
	$(LEVEL2)	 $(W)/Library/User/Gateways.html  >> $@
	$(LEVEL2)	 $(W)/Library/Using.html  >> $@
	$(LEVEL2)	 $(W)/Library/duns/fixes.html  >> $@
	$(LEVEL2)	 $(W)/Library/next/HTTelnet.html  >> $@
	$(LEVEL2)	 $(W)/LineMode/Defaults/cern_921217.html  >> $@
	$(LEVEL2)	 $(W)/LineMode/Defaults/cern_930407.html  >> $@
	$(LEVEL2)	 $(W)/LineMode/Defaults/cernold.html  >> $@
	$(LEVEL2)	 $(W)/Lynx/Status.html  >> $@
	$(LEVEL2)	 $(W)/MacHTTP/Status.html  >> $@
	$(LEVEL2)	 $(W)/MarkUp/Connolly/920303/HTML.dtd.html  >> $@
	$(LEVEL2)	 $(W)/MarkUp/Connolly/920303/HTML.html  >> $@
	$(LEVEL2)	 $(W)/MarkUp/Connolly/920303/Intro.html  >> $@
	$(LEVEL2)	 $(W)/MarkUp/Connolly/920303/References.html  >> $@
	$(LEVEL2)	 $(W)/MarkUp/Connolly/920303/Text.html  >> $@
	$(LEVEL2)	 $(W)/MarkUp/Connolly/930106/ISOlat1.html  >> $@
	$(LEVEL2)	 $(W)/MarkUp/Connolly/930120/HTML.dtd.html  >> $@
	$(LEVEL2)	 $(W)/MarkUp/Connolly/930120/HTML.html  >> $@
	$(LEVEL2)	 $(W)/MarkUp/Connolly/930120/Intro.html  >> $@
	$(LEVEL2)	 $(W)/MarkUp/Connolly/930120/References.html  >> $@
	$(LEVEL2)	 $(W)/MarkUp/Connolly/930120/Text.html  >> $@
	$(LEVEL2)	 $(W)/MarkUp/Connolly/930121/HTML.dtd.html  >> $@
	$(LEVEL2)	 $(W)/MarkUp/Connolly/930121/HTML.html  >> $@
	$(LEVEL2)	 $(W)/MarkUp/Connolly/930121/Intro.html  >> $@
	$(LEVEL2)	 $(W)/MarkUp/Connolly/930121/References.html  >> $@
	$(LEVEL2)	 $(W)/MarkUp/Connolly/930121/Text.html  >> $@
	$(LEVEL2)	 $(W)/MarkUp/Connolly/junk/test/supported.html  >> $@
	$(LEVEL2)	 $(W)/MarkUp/Intro.html  >> $@
	$(LEVEL2)	 $(W)/MarkUp/SGML/Klensin1.html  >> $@
	$(LEVEL2)	 $(W)/MarkUp/SGML/KlensinOverview.html  >> $@
	$(LEVEL2)	 $(W)/MarkUp/SGML/TimComments.html  >> $@
	$(LEVEL2)	 $(W)/MarkUp/old_HTML.dtd.html  >> $@
	$(LEVEL2)	 $(W)/MosaicForWindows/Status.html  >> $@
	$(LEVEL2)	 $(W)/NCSA_httpd/Overview.html  >> $@
	$(LEVEL2)	 $(W)/News/9305.html  >> $@
	$(LEVEL2)	 $(W)/News/9305RC.html  >> $@
	$(LEVEL2)	 $(W)/NextStep/src_0.16/Bugs.html  >> $@
	$(LEVEL2)	 $(W)/NextStep/src_0.16/Features.html  >> $@
	$(LEVEL2)	 $(W)/NextStep/src_0.16/SourceFiles.html  >> $@
	$(LEVEL2)	 $(W)/NextStep/src_0.16/WorldWideWeb.app/blank.html  >> $@
	$(LEVEL2)	 $(W)/NextStep/src_0.16/WorldWideWeb.app/default.html  >> $@
	$(LEVEL2)	 $(W)/NextStep/src_0.16/WorldWideWeb.app/help.html  >> $@
	$(LEVEL2)	 $(W)/Paper/html-spec-plainhead.html  >> $@
	$(LEVEL2)	 $(W)/Paper/http-spec-plainhead.html  >> $@
	$(LEVEL2)	 $(W)/Paper/junk.html  >> $@
	$(LEVEL2)	 $(W)/Paper/test.html  >> $@
	$(LEVEL2)	 $(W)/People/Berners-Lee-Bio.html  >> $@
	$(LEVEL2)	 $(W)/People/Nielsen.html  >> $@
	$(LEVEL2)	 $(W)/PerlServers/Overview.html  >> $@
	$(LEVEL2)	 $(W)/Project/CVS_Summary.html  >> $@
	$(LEVEL2)	 $(W)/Protocols/rfc1341/7_3_Message.html  >> $@
	$(LEVEL2)	 $(W)/Protocols/rfc822/3_Lexical.html  >> $@
	$(LEVEL2)	 $(W)/Protocols/rfc822/Overview.html  >> $@
	$(LEVEL2)	 $(W)/Provider/Professional.html  >> $@
	$(LEVEL2)	 $(W)/Provider/Style/Comments/Aronsson.html  >> $@
	$(LEVEL2)	 $(W)/Provider/Style/Comments/Lutz.html  >> $@
	$(LEVEL2)	 $(W)/Provider/Style/Comments/Overview.html  >> $@
	$(LEVEL2)	 $(W)/Provider/Style/Comments/Stockton.html  >> $@
	$(LEVEL2)	 $(W)/Provider/Style/Footnote.html  >> $@
	$(LEVEL2)	 $(W)/Provider/Style/GoodTitles.html  >> $@
	$(LEVEL2)	 $(W)/Provider/Style/NoMechanics.html  >> $@
	$(LEVEL2)	 $(W)/Provider/Style/ReadableText.html  >> $@
	$(LEVEL2)	 $(W)/Provider/Style/Virtual.html  >> $@
	$(LEVEL2)	 $(W)/RashtyClient/AnnounceAlpha.html  >> $@
	$(LEVEL2)	 $(W)/RashtyClient/AnnounceBeta.html  >> $@
	$(LEVEL2)	 $(W)/RashtyClient/Status.html  >> $@
	$(LEVEL2)	 $(W)/Test/Overview.html  >> $@
	$(LEVEL2)	 $(W)/Test/newspaper.html  >> $@
	$(LEVEL2)	 $(W)/TkWWW/Annouce_0.7.html  >> $@
	$(LEVEL2)	 $(W)/TkWWW/COPYING.html  >> $@
	$(LEVEL2)	 $(W)/TkWWW/Tcl/help/bugs.html  >> $@
	$(LEVEL2)	 $(W)/TkWWW/Tcl/help/config.html  >> $@
	$(LEVEL2)	 $(W)/TkWWW/Tcl/help/help.html  >> $@
	$(LEVEL2)	 $(W)/TkWWW/Tcl/help/ht_window.html  >> $@
	$(LEVEL2)	 $(W)/TkWWW/Tcl/help/internals.html  >> $@
	$(LEVEL2)	 $(W)/TkWWW/Tcl/help/intro.html  >> $@
	$(LEVEL2)	 $(W)/TkWWW/Tcl/help/joe.html  >> $@
	$(LEVEL2)	 $(W)/TkWWW/Tcl/help/todo.html  >> $@
	$(LEVEL2)	 $(W)/TkWWW/Tcl/help/v0.6.html  >> $@
	$(LEVEL2)	 $(W)/TkWWW/Tcl/help/v0.7.html  >> $@
	$(LEVEL2)	 $(W)/TkWWW/v0.8/WWW/TkWWW/Tcl/help/bugs.html  >> $@
	$(LEVEL2)	 $(W)/TkWWW/v0.8/WWW/TkWWW/Tcl/help/config.html  >> $@
	$(LEVEL2)	 $(W)/TkWWW/v0.8/WWW/TkWWW/Tcl/help/copying.html  >> $@
	$(LEVEL2)	 $(W)/TkWWW/v0.8/WWW/TkWWW/Tcl/help/dialog_goto.html  >> $@
	$(LEVEL2)	 $(W)/TkWWW/v0.8/WWW/TkWWW/Tcl/help/editing.html  >> $@
	$(LEVEL2)	 $(W)/TkWWW/v0.8/WWW/TkWWW/Tcl/help/ftp.html  >> $@
	$(LEVEL2)	 $(W)/TkWWW/v0.8/WWW/TkWWW/Tcl/help/help.html  >> $@
	$(LEVEL2)	 $(W)/TkWWW/v0.8/WWW/TkWWW/Tcl/help/history.html  >> $@
	$(LEVEL2)	 $(W)/TkWWW/v0.8/WWW/TkWWW/Tcl/help/ht_window.html  >> $@
	$(LEVEL2)	 $(W)/TkWWW/v0.8/WWW/TkWWW/Tcl/help/index.html  >> $@
	$(LEVEL2)	 $(W)/TkWWW/v0.8/WWW/TkWWW/Tcl/help/internals.html  >> $@
	$(LEVEL2)	 $(W)/TkWWW/v0.8/WWW/TkWWW/Tcl/help/joe.html  >> $@
	$(LEVEL2)	 $(W)/TkWWW/v0.8/WWW/TkWWW/Tcl/help/keyboard.html  >> $@
	$(LEVEL2)	 $(W)/TkWWW/v0.8/WWW/TkWWW/Tcl/help/mailing-list.html  >> $@
	$(LEVEL2)	 $(W)/TkWWW/v0.8/WWW/TkWWW/Tcl/help/overview.html  >> $@
	$(LEVEL2)	 $(W)/TkWWW/v0.8/WWW/TkWWW/Tcl/help/rrn.html  >> $@
	$(LEVEL2)	 $(W)/TkWWW/v0.8/WWW/TkWWW/Tcl/help/submissions.html  >> $@
	$(LEVEL2)	 $(W)/TkWWW/v0.8/WWW/TkWWW/Tcl/help/todo.html  >> $@
	$(LEVEL2)	 $(W)/TkWWW/v0.8/WWW/TkWWW/Tcl/help/tutorial.html  >> $@
	$(LEVEL2)	 $(W)/TkWWW/v0.8/WWW/TkWWW/Tcl/help/using_help.html  >> $@
	$(LEVEL2)	 $(W)/TkWWW/v0.8/WWW/TkWWW/Tcl/help/v0.6.html  >> $@
	$(LEVEL2)	 $(W)/TkWWW/v0.8/WWW/TkWWW/Tcl/help/v0.7.html  >> $@
	$(LEVEL2)	 $(W)/TkWWW/v0.8/WWW/TkWWW/Tcl/help/v0.8.html  >> $@
	$(LEVEL2)	 $(W)/Tools/ArthurTools/default.html  >> $@
	$(LEVEL2)	 $(W)/Tools/ArthurTools/demo.html  >> $@
	$(LEVEL2)	 $(W)/Tools/BBEdit/Overview.html  >> $@
	$(LEVEL2)	 $(W)/Tools/Filters.html  >> $@
	$(LEVEL2)	 $(W)/Tools/HTMLGeneration/findrefs.pl.html  >> $@
	$(LEVEL2)	 $(W)/Tools/HTMLGeneration/rtf2html.html  >> $@
	$(LEVEL2)	 $(W)/Tools/IndexServer/Overview.html  >> $@
	$(LEVEL2)	 $(W)/Tools/IndexServer/Welcome.html  >> $@
	$(LEVEL2)	 $(W)/Tools/LogAnalysis/UserGuide.html  >> $@
	$(LEVEL2)	 $(W)/Tools/Mail_filter.html  >> $@
	$(LEVEL2)	 $(W)/Tools/Man_faq_filters.html  >> $@
	$(LEVEL2)	 $(W)/Tools/Misc_filters.html  >> $@
	$(LEVEL2)	 $(W)/Tools/Pitcow/Overview.html  >> $@
	$(LEVEL2)	 $(W)/Tools/Prog_lang_filters.html  >> $@
	$(LEVEL2)	 $(W)/Tools/TeX/Characters.html  >> $@
	$(LEVEL2)	 $(W)/Tools/WP2HTML.html  >> $@
	$(LEVEL2)	 $(W)/Tools/Word_proc_filters.html  >> $@
	$(LEVEL2)	 $(W)/Viola/old/src/.html  >> $@
	$(LEVEL2)	 $(W)/Windows/Internals.html  >> $@
	$(LEVEL2)	 $(W)/Windows/Status.html  >> $@
	$(LEVEL2)	 $(W)/WorkingNotes/1993_Workshop/Agenda.html  >> $@
	$(LEVEL2)	 $(W)/WorkingNotes/1993_Workshop/Announcement.html  >> $@
	$(LEVEL2)	 $(W)/WorkingNotes/1993_Workshop/JoshOsborne.html  >> $@
	$(LEVEL2)	 $(W)/WorkingNotes/1993_Workshop/TimNotes.html  >> $@
	$(LEVEL2)	 $(W)/WorkingNotes/9310_W6/Overview.html  >> $@
	$(LEVEL2)	 $(W)/WorkingNotes/HCC/PresentationMaterials.html  >> $@
	$(LEVEL2)	 $(W)/XMosaic/Status.html  >> $@


missing-jan-94:
	$(LEVEL1)     $(W)/Tools/Python/Overview.html >> $@
	$(LEVEL1)     $(W)/Protocols/rfc850/rfc850.html >> $@
	$(LEVEL1)     $(W)/Protocols/rfc977/rfc977.html >> $@
	$(LEVEL1)     $(W)/Test/TagsInAnchor.html >> $@
	$(LEVEL1)     $(W)/LineMode/Defaults/cern_921125.html >> $@
	$(LEVEL1)     $(W)/LineMode/Defaults/CopyOf,Installation.html >> $@
	$(LEVEL1)     $(W)/LineMode/Defaults/cern_921115.html >> $@
	$(LEVEL1)     $(W)/LineMode/vm-cms/Overview.html >> $@
	$(LEVEL1)     $(W)/LineMode/vm-cms/errors.html >> $@
	$(LEVEL1)     $(W)/DesignIssues/WorkingNotes/DesignNotes.html >> $@
	$(LEVEL1)     $(W)/DesignIssues/LinkToLiving.html >> $@
	$(LEVEL1)     $(W)/Macintosh/Design.html >> $@
	$(LEVEL1)     $(W)/Macintosh/ThinkC.html >> $@
	$(LEVEL1)     $(W)/Macintosh/MPW.html >> $@
	$(LEVEL1)     $(W)/Provider/ExistingData.html >> $@
	$(LEVEL1)     $(W)/Provider/RadioButtons.html >> $@
	$(LEVEL1)     $(W)/Provider/Example1/Calendar.html >> $@
	$(LEVEL1)     $(W)/Provider/Example1/Calendar/Monday.html >> $@
	$(LEVEL1)     $(W)/Provider/Example1/Calendar/Tuesday.html >> $@
	$(LEVEL1)     $(W)/Provider/Example1/Calendar/Wednesday.html >> $@
	$(LEVEL1)     $(W)/Provider/Example2/Case.html >> $@
	$(LEVEL1)     $(W)/Provider/Example3/Results.html >> $@
	$(LEVEL1)     $(W)/Provider/TelnetServer.html >> $@
	$(LEVEL1)     $(W)/WorkingNotes/Overview.html >> $@
	$(LEVEL1)     $(W)/FineWWW/Status.html >> $@
	$(LEVEL1)     $(W)/FineWWW/Announcement_00.html >> $@
	$(LEVEL1)     $(W)/Curses/Release_00.html >> $@
	$(LEVEL1)     $(W)/MidasWWW/Announce1.html >> $@
	$(LEVEL1)     $(W)/MidasWWW/v10/options.html >> $@
	$(LEVEL1)     $(W)/MidasWWW/v10/slac_library.html >> $@
	$(LEVEL1)     $(W)/MidasWWW/v10/overview.html >> $@
	$(LEVEL1)     $(W)/MidasWWW/v10/home.html >> $@
	$(LEVEL1)     $(W)/MidasWWW/v10/navigate.html >> $@
	$(LEVEL1)     $(W)/MidasWWW/v10/quit.html >> $@
	$(LEVEL1)     $(W)/MidasWWW/v10/menus.html >> $@
	$(LEVEL1)     $(W)/MidasWWW/v10/save.html >> $@
	$(LEVEL1)     $(W)/MidasWWW/v10/clone.html >> $@
	$(LEVEL1)     $(W)/MidasWWW/v10/opendoc.html >> $@
	$(LEVEL1)     $(W)/MidasWWW/v10/docinfo.html >> $@
	$(LEVEL1)     $(W)/MidasWWW/v10/about.html >> $@
	$(LEVEL1)     $(W)/MidasWWW/v10/help.html >> $@
	$(LEVEL1)     $(W)/MidasWWW/v10/local.html >> $@
	$(LEVEL1)     $(W)/MidasWWW/v10/create_home.html >> $@
	$(LEVEL1)     $(W)/MidasWWW/v10/save_settings.html >> $@
	$(LEVEL1)     $(W)/MidasWWW/Bugs.html >> $@
	$(LEVEL1)     $(W)/MidasWWW/AtCERN.html >> $@
	$(LEVEL1)     $(W)/Library/Using_YP.html >> $@
	$(LEVEL1)     $(W)/SGMLStream/src/test.html >> $@
	$(LEVEL1)     $(W)/NextStep/README.html >> $@
	$(LEVEL1)     $(W)/NextStep/Copyright.html >> $@
	$(LEVEL1)     $(W)/NextStep/TBL_Disclaimer.html >> $@
	$(LEVEL1)     $(W)/NextStep/2.1/Bugs.html >> $@
	$(LEVEL1)     $(W)/NextStep/2.1/Features.html >> $@
	$(LEVEL1)     $(W)/NextStep/2.1/SourceFiles.html >> $@
	$(LEVEL1)     $(W)/NextStep/Implementation/SourceFiles.html >> $@
	$(LEVEL1)     $(W)/NextStep/Implementation/Bugs.html >> $@
	$(LEVEL1)     $(W)/NextStep/Implementation/Features.html >> $@
	$(LEVEL1)     $(W)/NextStep/Implementation/WorldWideWeb.app/blank.html >> $@
	$(LEVEL1)     $(W)/NextStep/Implementation/WorldWideWeb.app/default.html >> $@
	$(LEVEL1)     $(W)/NextStep/Implementation/WorldWideWeb.app/help.html >> $@
	$(LEVEL1)     $(W)/NextStep/CommandKeys.html >> $@
	$(LEVEL1)     $(W)/NextStep/CommonStyles.html >> $@
	$(LEVEL1)     $(W)/NextStep/Installation.html >> $@
	$(LEVEL1)     $(W)/NextStep/MakingDocuments.html >> $@
	$(LEVEL1)     $(W)/NextStep/Menus.html >> $@
	$(LEVEL1)     $(W)/NextStep/Styles.html >> $@
	$(LEVEL1)     $(W)/NextStep/UsingNFS.html >> $@
	$(LEVEL1)     $(W)/NextStep/WorldWideWeb.html >> $@
	$(LEVEL1)     $(W)/NextStep/Search.html >> $@
	$(LEVEL1)     $(W)/NextStep/Inspector.html >> $@
	$(LEVEL1)     $(W)/HytelnetGate/Overview.html >> $@
	$(LEVEL1)     $(W)/HTMLGate/Help/cannot_connect.html >> $@
	$(LEVEL1)     $(W)/HTMLGate/Help/about.html >> $@

missing-oct_92:
	$(LEVEL1)     $(W)/Protocols/HTTP/Ex1.html >> $@
#	$(LEVEL1)     $(W)/Protocols/HTTP/HTTP2.html >> $@    
#	$(LEVEL1)     $(W)/Protocols/HTTP/HTRESP.html >> $@
	$(LEVEL1)     $(W)/Protocols/DesignIssues.html >> $@
	$(LEVEL1)     $(W)/Protocols/TechInfo.html >> $@
	$(LEVEL1)     $(W)/NeXT/Implementation/Upgrade.html >> $@
	$(LEVEL1)     $(W)/NeXT/Status.html >> $@
	$(LEVEL1)     $(W)/Daemon/Implementation/whoindex.html >> $@
	$(LEVEL1)     $(W)/Daemon/FINDGate.html >> $@
	$(LEVEL1)     $(W)/Daemon/Perf000.html >> $@
	$(LEVEL1)     $(W)/Daemon/DCLServer.html >> $@
	$(LEVEL1)     $(W)/Daemon/JanetAndJohn.html >> $@
	$(LEVEL1)     $(W)/Daemon/System33/Gateway.html >> $@
	$(LEVEL1)     $(W)/Daemon/Oracle/Overview.html >> $@
	$(LEVEL1)     $(W)/Daemon/VMSGateStatus.html >> $@
	$(LEVEL1)     $(W)/Test/ForTesting.html >> $@
	$(LEVEL1)     $(W)/Test/OLyrics.html >> $@
	$(LEVEL1)     $(W)/DesignIssues/DosDonts.html >> $@
	$(LEVEL1)     $(W)/DesignIssues/ProtocolVersions.html >> $@
	$(LEVEL1)     $(W)/DesignIssues/HTTP0.9Summary.html >> $@
	$(LEVEL1)     $(W)/DesignIssues/ProtocolProblems.html >> $@
	$(LEVEL1)     $(W)/DesignIssues/Protocolcomms.html >> $@
	$(LEVEL1)     $(W)/DesignIssues/CompatibleProof.html >> $@
	$(LEVEL1)     $(W)/DesignIssues/RCcomments.html >> $@
	$(LEVEL1)     $(W)/DesignIssues/WhatIsAnIndex.html >> $@
	$(LEVEL1)     $(W)/DesignIssues/ToBeThoughtOf.html >> $@
	$(LEVEL1)     $(W)/DesignIssues/Function.html >> $@
	$(LEVEL1)     $(W)/DesignIssues/FunctionTraverse.html >> $@
	$(LEVEL1)     $(W)/DesignIssues/BuildingBackLinks.html >> $@
	$(LEVEL1)     $(W)/Macintosh/Status.html >> $@
	$(LEVEL1)     $(W)/FIND/Status.html >> $@
	$(LEVEL1)     $(W)/Talks/W3Examples.html >> $@
	$(LEVEL1)     $(W)/SLAC/People.html >> $@
	$(LEVEL1)     $(W)/Project/c++.html >> $@
	$(LEVEL1)     $(W)/Project/CodingMarks.html >> $@
	$(LEVEL1)     $(W)/Viola/violaWWWAbout.html >> $@
	$(LEVEL1)     $(W)/Viola/violaWWWHelp.html >> $@
	$(LEVEL1)     $(W)/Viola/Status.html >> $@
	$(LEVEL1)     $(W)/Viola/original_libWWW/Copyright.html >> $@
	$(LEVEL1)     $(W)/Viola/original_libWWW/README.html >> $@
	$(LEVEL1)     $(W)/Viola/original_libWWW/TBL_Disclaimer.html >> $@
	$(LEVEL1)     $(W)/Users/Aleph_installation.html >> $@
	$(LEVEL1)     $(W)/TheProject.html >> $@
	$(LEVEL1)     $(W)/Bibliography.html >> $@
	$(LEVEL1)     $(W)/Frame/fminit2.0/www_and_frame.html >> $@
	$(LEVEL1)     $(W)/Frame/fminit2.0/test.html >> $@
	$(LEVEL1)     $(W)/JANETAccess.html >> $@
	$(LEVEL1)     $(W)/People/Pellow.html >> $@
	$(LEVEL1)     $(W)/People/Groff.html >> $@
	$(LEVEL1)     $(W)/Curses/Status.html >> $@
	$(LEVEL1)     $(W)/Erwise/Status.html >> $@
	$(LEVEL1)     $(W)/Carl/UpdatedUG.html >> $@
	$(LEVEL1)     $(W)/Carl/Improvements.html >> $@
	$(LEVEL1)     $(W)/Carl/Format_Handling.html >> $@
	$(LEVEL1)     $(W)/Carl/New_Resp_Handle.html >> $@
	$(LEVEL1)     $(W)/Carl/Preference_Setting.html >> $@
	$(LEVEL1)     $(W)/Carl/Updated_User_Guide.html >> $@
	$(LEVEL1)     $(W)/MidasWWW/Status.html >> $@
	$(LEVEL1)     $(W)/VMClient/Status.html >> $@
	$(LEVEL1)     $(W)/Library/Implementation/DesignNotes.html >> $@
	$(LEVEL1)     $(W)/Library/Implementation/DesignNotes/Perf000.html >> $@
	$(LEVEL1)     $(W)/Library/Bugs.html >> $@
	$(LEVEL1)     $(W)/Library/Features.html >> $@
	$(LEVEL1)     $(W)/Library/Status.html >> $@
	$(LEVEL1)     $(W)/zDesignNotes.html >> $@
	$(LEVEL1)     $(W)/Status_old.html >> $@
	$(LEVEL1)     $(W)/TkWWW/Status.html >> $@
	$(LEVEL1)     $(W)/Notation.html >> $@
	$(LEVEL1)     $(W)/Glossary.html >> $@

rfc1341$(HTMLS):
	$(LEVEL1)     $(W)/Protocols/rfc1341/0_Abstract.html > $@
	$(LEVEL1)     $(W)/Protocols/rfc1341/0_TableOfContents.html >> $@
	$(LEVEL1)     $(W)/Protocols/rfc1341/1_Introduction.html >> $@
	$(LEVEL1)     $(W)/Protocols/rfc1341/2_Notations.html >> $@
	$(LEVEL1)     $(W)/Protocols/rfc1341/3_MIME-Version.html >> $@
	$(LEVEL1)     $(W)/Protocols/rfc1341/4_Content-Type.html >> $@
	$(LEVEL1)     $(W)/Protocols/rfc1341/6_Optional-fields.html >> $@
	$(LEVEL1)     $(W)/Protocols/rfc1341/5_Content-Transfer-Encoding.html >> $@
	$(LEVEL1)     $(W)/Protocols/rfc1341/7_1_Text.html >> $@
	$(LEVEL1)     $(W)/Protocols/rfc1341/7_2_Multipart.html >> $@
	$(LEVEL1)     $(W)/Protocols/rfc1341/Z_Security.html >> $@
	$(LEVEL1)     $(W)/Protocols/rfc1341/7_Content-Type_Values.html >> $@
	$(LEVEL1)     $(W)/Protocols/rfc1341/0_Authors.html >> $@
	$(LEVEL1)     $(W)/Protocols/rfc1341/9_References.html >> $@
	$(LEVEL1)     $(W)/Protocols/rfc1341/1__Historical.html >> $@
	$(LEVEL1)     $(W)/Protocols/rfc1341/4__Historical.html >> $@
	$(LEVEL1)     $(W)/Protocols/rfc1341/4__Rationale.html >> $@
	$(LEVEL1)     $(W)/Protocols/rfc1341/rfc1341.html >> $@

Not_Appropriate:
	$(LEVEL1)     $(W)/Help.html >> $@

Old_News:
	$(LEVEL1)     $(W)/News/9201.html >> $@
	$(LEVEL1)     $(W)/News/9204.html >> $@
	$(LEVEL1)     $(W)/News/9209.html >> $@
	$(LEVEL1)     $(W)/News/9211.html >> $@

Standards:
	$(LEVEL1)     $(H)/Standards/ISO/Overview.html >> $@
	$(LEVEL1)     $(H)/Standards/PostScript/IPF.html >> $@
	$(LEVEL1)     $(H)/Standards/Groupware/Overview.html >> $@
	$(LEVEL1)     $(H)/Standards/SIGHyper.html >> $@
	$(LEVEL1)     $(H)/Standards/HyTime.html >> $@
	$(LEVEL1)     $(H)/Standards/Overview.html >> $@
	$(LEVEL1)     $(H)/Standards/XHelp/Overview.html >> $@

CVS_RCS : 
	$(FIRST0)   $(W)/IntroCVS.html >> $@
	$(LEVEL1)     $(W)/Project/CVSman.html > $@
	$(LEVEL1)     $(W)/Project/CVSman1.html >> $@
	$(LEVEL1)     $(W)/Project/CVSmanorg.html >> $@
	$(LEVEL1)     $(W)/Project/CVSman2.html >> $@
	$(LEVEL1)     $(W)/Project/CVSadd.html >> $@
	$(LEVEL1)     $(W)/Project/CVSadmin.html >> $@
	$(LEVEL1)     $(W)/Project/CVScommit.html >> $@
	$(LEVEL1)     $(W)/Project/CVSdiff.html >> $@
	$(LEVEL1)     $(W)/Project/CVSexport.html >> $@
	$(LEVEL1)     $(W)/Project/CVShistory.html >> $@
	$(LEVEL1)     $(W)/Project/CVSimport.html >> $@
	$(LEVEL1)     $(W)/Project/CVSlog.html >> $@
	$(LEVEL1)     $(W)/Project/CVSrdiff.html >> $@
	$(LEVEL1)     $(W)/Project/CVSrelease.html >> $@
	$(LEVEL1)     $(W)/Project/CVSremove.html >> $@
	$(LEVEL1)     $(W)/Project/CVSrtag.html >> $@
	$(LEVEL1)     $(W)/Project/CVSstatus.html >> $@
	$(LEVEL1)     $(W)/Project/CVStag.html >> $@
	$(LEVEL1)     $(W)/Project/CVSupdate.html >> $@
	$(LEVEL1)     $(W)/Project/CVSfiles.html >> $@
	$(LEVEL1)     $(W)/Project/CVSenvvars.html >> $@
	$(LEVEL1)     $(W)/Project/CVSmanag.html >> $@
	$(LEVEL1)     $(W)/Project/CVScheckout.html >> $@
	$(LEVEL0)     $(W)/Project/RCSman.html >> $@
	$(LEVEL1)     $(W)/Project/RCSrcs.html >> $@
	$(LEVEL1)     $(W)/Project/RCSco.html >> $@
	$(LEVEL1)     $(W)/Project/RCSci.html >> $@
	$(LEVEL1)     $(W)/Project/RCSident.html >> $@
	$(LEVEL1)     $(W)/Project/RCSdiff.html >> $@
	$(LEVEL1)     $(W)/Project/RCSmerge.html >> $@
	$(LEVEL1)     $(W)/Project/RCSrlog.html >> $@
	$(LEVEL1)     $(W)/Project/RCSrcsfile.html >> $@
talks :
	$(LEVEL1)   $(W)/Talk_Feb-91.html >> $@
	$(LEVEL1)   $(W)/Talks/Summary.html >> $@
	$(LEVEL1)   $(W)/Talks/Independence.html >> $@
	$(LEVEL1)   $(W)/Talks/Negociation.html >> $@
	$(LEVEL1)   $(W)/Talks/Formats.html >> $@
	$(LEVEL1)   $(W)/Talks/HTGeneral.html >> $@
	$(LEVEL1)   $(W)/Talks/FINDGateway.html >> $@
	$(LEVEL1)   $(W)/Talks/Conclusion.html >> $@
	$(LEVEL1)   $(W)/Talks/C5_questions.html >> $@
	$(LEVEL1)   $(W)/Talks/Authors.html >> $@
	$(LEVEL1)   $(W)/Talks/ForMapelli.html >> $@
	$(LEVEL1)   $(W)/Talks/HEPICS.html >> $@
	$(LEVEL1)   $(W)/Talks/C5_Committee.html >> $@
	$(LEVEL1)   $(W)/Talks/FIND_problems.html >> $@
	$(LEVEL1)   $(W)/Talks/Seminar_LM.html >> $@
	$(LEVEL1)   $(W)/Talks/Title.html >> $@
	$(LEVEL1)   $(W)/Talks/C5_Questions.html >> $@
	$(LEVEL1)   $(W)/Talks/LineMode.html >> $@
	$(LEVEL1)   $(W)/Talks/Available.html >> $@
	$(LEVEL1)   $(W)/Talks/NeXT_Browser.html >> $@
	$(LEVEL1)   $(W)/Talks/HEPICS_Conclusion.html >> $@
	$(LEVEL1)   $(W)/Talks/ToCome.html >> $@
	$(LEVEL1)   $(W)/Talks/Overview.html >> $@
	$(LEVEL1)   $(W)/Talks/FIND_1.html >> $@
	$(LEVEL1)   $(W)/Talks/FIND_2.html >> $@
	$(LEVEL1)   $(W)/Talks/C5_17_May_91.html >> $@
	$(LEVEL1)   $(W)/Talks/LM.html >> $@
	$(LEVEL1)   $(W)/Talks/Architecture_LM.html >> $@
	$(LEVEL1)   $(W)/Talks/CommandList_of_LM.html >> $@
	$(LEVEL1)   $(W)/Talks/Information_avaliable.html >> $@
	$(LEVEL1)   $(W)/Talks/Style_LM.html >> $@
	$(LEVEL1)   $(W)/Talks/CommandLineSyntax_LM.html >> $@
	$(LEVEL1)   $(W)/Talks/Installed_on.html >> $@
	$(LEVEL1)   $(W)/Talks/Operation_of_LM.html >> $@
	$(LEVEL1)   $(W)/Talks/Addressing.html >> $@
	$(LEVEL1)   $(W)/Talks/Future_Improv_LM.html >> $@
	$(LEVEL1)   $(W)/Talks/SearchAddress.html >> $@
	$(LEVEL1)   $(W)/Talks/LM_Avaliability.html >> $@
	$(LEVEL1)   $(W)/Talks/Features_of_LM.html >> $@
	$(LEVEL1)   $(W)/Talks/HTML.html >> $@
	$(LEVEL1)   $(W)/Talks/ComputerSeminar.html >> $@
	$(LEVEL1)   $(W)/Talks/Technical.html >> $@
	$(LEVEL1)   $(W)/Talks/Introduction.html >> $@
	$(LEVEL1)   $(W)/Talks/HTforms.html >> $@
	$(LEVEL1)   $(W)/Talks/HTexamples.html >> $@
	$(LEVEL1)   $(W)/Talks/HTproblems.html >> $@
	$(LEVEL1)   $(W)/Talks/HTReading.html >> $@
	$(LEVEL1)   $(W)/Talks/Protocols.html >> $@
	$(LEVEL1)   $(W)/Talks/C5_conclusion.html >> $@
	$(LEVEL2)	 $(W)/Talks/CompSem93/Force.html  >> $@
	$(LEVEL2)	 $(W)/Talks/CompSem93/Future.html  >> $@
	$(LEVEL2)	 $(W)/Talks/CompSem93/FutureText.html  >> $@
	$(LEVEL2)	 $(W)/Talks/CompSem93/GettingStarted.html  >> $@
	$(LEVEL2)	 $(W)/Talks/CompSem93/HTTP2.html  >> $@
	$(LEVEL2)	 $(W)/Talks/CompSem93/InfoNet93/Overview.html  >> $@
	$(LEVEL2)	 $(W)/Talks/CompSem93/Maintenance.html  >> $@
	$(LEVEL2)	 $(W)/Talks/CompSem93/MakingServer.html  >> $@
	$(LEVEL2)	 $(W)/Talks/CompSem93/Overview.html  >> $@
	$(LEVEL2)	 $(W)/Talks/CompSem93/Pictures.html  >> $@
	$(LEVEL2)	 $(W)/Talks/CompSem93/RFC.html  >> $@
	$(LEVEL2)	 $(W)/Talks/CompSem93/Tour.html  >> $@
	$(LEVEL2)	 $(W)/Talks/General.html  >> $@
	$(LEVEL2)	 $(W)/Talks/General/About.html  >> $@
	$(LEVEL2)	 $(W)/Talks/General/Collaborative.html  >> $@
	$(LEVEL2)	 $(W)/Talks/General/Concepts.html  >> $@
	$(LEVEL2)	 $(W)/Talks/General/Directions.html  >> $@
	$(LEVEL2)	 $(W)/Talks/General/Protocols.html  >> $@
	$(LEVEL2)	 $(W)/Talks/General/Publishing.html  >> $@
	$(LEVEL2)	 $(W)/Talks/General/TextList.html  >> $@
	$(LEVEL2)	 $(W)/Talks/General/Transparencies.html  >> $@
	$(LEVEL2)	 $(W)/Talks/General/TransparencyList.html  >> $@
	$(LEVEL2)	 $(W)/Talks/General/URL.html  >> $@
	$(LEVEL2)	 $(W)/Talks/General/URL_Requirements.html  >> $@
	$(LEVEL2)	 $(W)/Talks/General/URL_syntax.html  >> $@
	$(LEVEL2)	 $(W)/Talks/General/app-defaults_XMosaic_1.html  >> $@
	$(LEVEL2)	 $(W)/Talks/NeatPoints.html  >> $@
	$(LEVEL2)	 $(W)/Talks/Nordunet93/General.html  >> $@
	$(LEVEL2)	 $(W)/Talks/Nordunet93/Overview.html  >> $@
	$(LEVEL2)	 $(W)/Talks/OnlinePublishing93/Concept.html  >> $@
	$(LEVEL2)	 $(W)/Talks/OnlinePublishing93/GettingStarted.html  >> $@
	$(LEVEL2)	 $(W)/Talks/OnlinePublishing93/Negotiation.html  >> $@
	$(LEVEL2)	 $(W)/Talks/OnlinePublishing93/Overview.html  >> $@
	$(LEVEL2)	 $(W)/Talks/OnlinePublishing93/Protocols.html  >> $@
	$(LEVEL2)	 $(W)/Talks/OnlinePublishing93/Software.html  >> $@
	$(LEVEL2)	 $(W)/Talks/OnlinePublishing93/WhatIs.html  >> $@
	$(LEVEL2)	 $(W)/Talks/Tour.html  >> $@
	$(LEVEL2)	 $(W)/Talks/Tour/FindingOurWay.html  >> $@
	$(LEVEL2)	 $(W)/Talks/Tour/FindingOurWayPoints.html  >> $@
	$(LEVEL2)	 $(W)/Talks/Tour/Neat.html  >> $@
	$(LEVEL2)	 $(W)/Talks/Tour/Overview.html  >> $@
	$(LEVEL2)	 $(W)/Talks/Tour/OverviewText.html  >> $@
	$(LEVEL2)	 $(W)/Talks/Tour/Text.html  >> $@

#				WWW Which we have exccluded:
notyet :
	$(LEVEL1)     $(W)/LineMode/Internals.html
	$(LEVEL1)     $(W)/LineMode/Updating_LM/ASIS.html
	$(LEVEL1)     $(W)/LineMode/Defaults/cern.html
	$(LEVEL1)   $(W)/X11/Overview.html >> $@
	$(LEVEL1)   $(W)/NeXT/Implementation/Test/backup_of_test.html >> $@
	$(LEVEL1)   $(W)/NeXT/Implementation/WorldWideWeb.app/help.html >> $@
	$(LEVEL1)   $(W)/NeXT/Implementation/WorldWideWeb.app/default.html >> $@
	$(LEVEL1)   $(W)/NeXT/Implementation/WorldWideWeb.app/blank.html >> $@
	$(LEVEL1)   $(W)/NeXT/Implementation/Features.html >> $@
	$(LEVEL1)   $(W)/NeXT/Implementation/test.html >> $@
	$(LEVEL1)   $(W)/NeXT/Implementation/Bugs.html >> $@
	$(LEVEL1)   $(W)/NeXT/Implementation/default.html >> $@
	$(LEVEL1)   $(W)/NeXT/Implementation/SourceFiles.html >> $@
	$(LEVEL1)   $(W)/NeXT/CommonStyles.html >> $@
	$(LEVEL1)   $(W)/NeXT/Installation.html >> $@
	$(LEVEL1)   $(W)/NeXT/CommandKeys.html >> $@
	$(LEVEL1)   $(W)/NeXT/UsingNFS.html >> $@
	$(LEVEL1)   $(W)/NeXT/Menus.html >> $@
	$(LEVEL1)   $(W)/NeXT/MakingDocuments.html >> $@
	$(LEVEL1)   $(W)/NeXT/Styles.html >> $@
	$(LEVEL1)   $(W)/NeXT/WorldWideWeb.html >> $@
	
	$(LEVEL1)   $(W)/Test/protected.html >> $@
	$(LEVEL1)   $(W)/Test/test.html >> $@
	$(LEVEL1)   $(W)/Administration/AS_WorkPlan_91.html >> $@
	$(LEVEL1)   $(W)/Administration/Mailing/Overview.html >> $@
	$(LEVEL1)   $(W)/Macintosh/Overview.html >> $@
	$(LEVEL1)   $(W)/FIND/Stored.html >> $@
	$(LEVEL1)   $(W)/FIND/Overview.html >> $@
	$(LEVEL1)   $(W)/FIND/Features.html >> $@
	$(LEVEL1)   $(W)/FIND/Bugs.html >> $@
	$(LEVEL1)   $(W)/Implementation/DesignNotes.html >> $@
	$(LEVEL1)   $(W)/Newsgroups.html >> $@
	$(LEVEL1)   $(W)/Proposal.html >> $@
	$(LEVEL1)   $(W)/Terms.html >> $@
	$(LEVEL1)   $(W)/Xanadu.html >> $@
	$(LEVEL1)   $(W)/StoringLinks.html >> $@
	$(LEVEL1)   $(W)/WhatIs.html >> $@
	$(LEVEL1)   $(W)/Status.html >> $@
	$(LEVEL1)   $(W)/RelatedProducts.html >> $@
	$(LEVEL1)   $(W)/Architecture/Browser.html >> $@
	$(LEVEL1)   $(W)/DesignNotes.html >> $@
	$(LEVEL1)   $(W)/WorkplanECP-PT.html >> $@
	$(LEVEL1)   $(W)/Link.html >> $@
	$(LEVEL1)   $(W)/CodingStandards.html >> $@
	$(LEVEL1)   $(W)/OldImplementation/DesignNotes.html >> $@
	$(LEVEL1)   $(W)/News/9101.html >> $@
omit :
	$(LEVEL1)     $(W)/DesignIssues/Limitations.html >> $@		JUNK
	$(LEVEL1)     $(W)/DesignIssues/Customisation.html >> $@		JUNK
	$(LEVEL2)       $(W)/DesignIssues/Indexing.html >> $@		JUNK
	$(LEVEL1)     $(W)/LineMode/Browser.html >> $@
	$(LEVEL1)     $(W)/LineMode/UsersGuide.html >> $@
	$(LEVEL1)   $(W)/LineMode/Defaults/default.html >> $@
	$(LEVEL1)   $(W)/LineMode/Implementation/NeXT/junk.html >> $@
	$(LEVEL1)   $(W)/LineMode/DocIdeas.html >> $@
	$(LEVEL1)   $(W)/LineMode/Updating_LM.html >> $@
	$(LEVEL1)   $(W)/NeXT/Old/Bugs.html >> $@
	$(LEVEL1)   $(W)/NeXT/Old/Features.html >> $@
	$(LEVEL1)   $(W)/NeXT/Old/SourceFiles.html >> $@
	$(LEVEL1)   $(W)/NeXT/Old/default.html >> $@
	$(LEVEL1)   $(W)/NeXT/Old/test.html >> $@
	$(LEVEL1)   $(W)/NeXT/Old/WorldWideWeb.app/help.html >> $@
	$(LEVEL1)   $(W)/NeXT/Old/WorldWideWeb.app/default.html >> $@
	$(LEVEL1)   $(W)/NeXT/Old/WorldWideWeb.app/blank.html >> $@
	$(LEVEL1)   $(W)/Daemon/Implementation/NetAlarms/alarm.html >> $@
	$(LEVEL1)   $(W)/Daemon/Implementation/NetAlarms/CERNR1.html >> $@
	$(LEVEL1)   $(W)/Daemon/Implementation/NetAlarms/ALARM.html >> $@
	$(LEVEL1)   $(W)/Daemon/Implementation/NetAlarms/NETMON.html >> $@
	$(LEVEL1)   $(W)/Daemon/Implementation/NetAlarms/decnet.html >> $@
	$(LEVEL1)   $(W)/Daemon/Implementation/NetAlarms/X25con.html >> $@
	$(LEVEL1)   $(W)/Daemon/Implementation/NetAlarms/DECcircuit.html >> $@
	$(LEVEL1)   $(W)/Daemon/Implementation/NetAlarms/UPDcernr4.html >> $@
	$(LEVEL1)   $(W)/Daemon/Implementation/NetAlarms/DECnoarea.html >> $@
	$(LEVEL1)   $(W)/Daemon/Implementation/NetAlarms/CERNR2.html >> $@
	$(LEVEL1)   $(W)/Daemon/Implementation/NetAlarms/CERNIT.html >> $@
	$(LEVEL1)   $(W)/Daemon/Implementation/NetAlarms/CERNFR.html >> $@
	$(LEVEL1)   $(W)/Daemon/Implementation/NetAlarms/CERNR4.html >> $@
	$(LEVEL1)   $(W)/Daemon/Implementation/NetAlarms/template.html >> $@
	$(LEVEL1)   $(W)/Daemon/Implementation/NetAlarms/DECarea.html >> $@
	$(LEVEL1)   $(W)/Daemon/Implementation/NetAlarms/X25cernr4.html >> $@
	$(LEVEL1)   $(W)/Daemon/Implementation/NetAlarms/X25current.html >> $@
	$(LEVEL1)   $(W)/Daemon/Implementation/NetAlarms/X25down.html >> $@
	$(LEVEL1)   $(W)/Daemon/Implementation/NetAlarms/X25warn.html >> $@
old:
	$(LEVEL1)     $(W)/MarkUp/Connolly/921125/spec.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Connolly/921125/recommended.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Connolly/921125/complete.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Connolly/921125/tolerated.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Connolly/921125/supported.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Connolly/921125/deprecated.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Connolly/921125/errors.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Connolly/921130/MarkUp.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Connolly/921130/Text.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Connolly/921130/complete.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Connolly/921130/deprecated.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Connolly/921130/error_data_starts_body.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Connolly/921130/errors.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Connolly/921130/recommended.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Connolly/921130/structure1.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Connolly/921130/structure2.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Connolly/921130/structure3.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Connolly/921130/structure4.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Connolly/921130/structure5.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Connolly/921130/supported.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Connolly/921130/tolerated.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Connolly/921203/HTML.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Connolly/921203/ISOlat1.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Connolly/921203/Text.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Connolly/921203/complete.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Connolly/921203/deprecated.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Connolly/921203/errors.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Connolly/921203/recommended.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Connolly/921203/supported.html >> $@
	$(LEVEL1)     $(W)/MarkUp/Connolly/921203/tolerated.html >> $@


#=====================================================================================
#
#	Outside WWW - we don't scan that any more
#	
other-H:
	$(LEVEL1)     $(H)/MIME/Overview.html >> $@
	$(LEVEL1)     $(H)/Viola/Review.html >> $@
	$(LEVEL1)     $(H)/Viola/AtCERN.html >> $@
	$(LEVEL1)     $(H)/Viola/Installation.html >> $@
	$(LEVEL1)     $(H)/Viola/Review_0.html >> $@
	$(LEVEL1)     $(H)/Erwise/bin/decstation/default.html >> $@
	$(LEVEL1)     $(H)/Erwise/bin/sun4/default.html >> $@
	$(LEVEL1)     $(H)/Erwise/Review.html >> $@
	$(LEVEL1)     $(H)/Erwise/vsViola.html >> $@
#	$(LEVEL1)     $(H)/History.html >> $@
	$(LEVEL1)     $(H)/README.html >> $@
	$(LEVEL1)     $(H)/Copyright.html >> $@
	$(LEVEL1)     $(H)/TBL_Disclaimer.html >> $@
	$(LEVEL1)     $(H)/CERNLIB/Overview.html >> $@

data-sources:
	$(LEVEL1)     $(H)/DataSources/News/bionet.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/bit.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/biz.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/cern.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/ch.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/eunet.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/gnu.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/misc.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/rec.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/sci.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/soc.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/talk.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/vms.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/comp.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/news.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Overview.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/OtherGroups/control.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/OtherGroups/ddn.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/OtherGroups/de.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/OtherGroups/fnal.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/OtherGroups/general.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/OtherGroups/hepnet.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/OtherGroups/ieee.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/OtherGroups/info.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/OtherGroups/junk.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/OtherGroups/k12.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/OtherGroups/Overview.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/OtherGroups/sco.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/OtherGroups/slac.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/OtherGroups/srg.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/OtherGroups/ssc.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/OtherGroups/trial.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/OtherGroups/u3b.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/OtherGroups/desy.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/OtherGroups/kek.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/OtherGroups/lbl.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/OtherGroups/relcom.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/alt.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/AboutLists.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/Overview.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/control.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/alt.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/bionet.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/bit.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/biz.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/cern.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/ch.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/comp.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/general.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/ddn.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/de.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/desy.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/eunet.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/fnal.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/!pubnet.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/gnu.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/hepnet.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/ieee.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/info.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/junk.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/k12.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/kek.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/lbl.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/misc.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/news.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/rec.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/relcom.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/sci.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/sco.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/slac.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/soc.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/srg.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/ssc.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/talk.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/trial.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/u3b.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/vmsnet.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/Groups/!unix-pc.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/fullcomp.html >> $@
	$(LEVEL1)     $(H)/DataSources/News/fullnews.html >> $@
	$(LEVEL1)     $(H)/DataSources/NewsFromVM/Overview.html >> $@
	$(LEVEL1)     $(H)/DataSources/Archives/HCI_Bibliography/HCI_Bibliography.html >> $@
	$(LEVEL1)     $(H)/DataSources/Archives/Overview.html >> $@
	$(LEVEL1)     $(H)/DataSources/Archives/HelpSet.html >> $@
	$(LEVEL1)     $(H)/DataSources/Archives/HelpProg.html >> $@
	$(LEVEL1)     $(H)/DataSources/Archives/HelpProgRegex.html >> $@
	$(LEVEL1)     $(H)/DataSources/Archives/Prospero.html >> $@
	$(LEVEL1)     $(H)/DataSources/Archives/Help.html >> $@
	$(LEVEL1)     $(H)/DataSources/Archives/RFC_sites.html >> $@
	$(LEVEL1)     $(H)/DataSources/Archives/CoombsPapers.html >> $@
	$(LEVEL1)     $(H)/DataSources/whois/help.html >> $@
	$(LEVEL1)     $(H)/DataSources/whois/Keywords.html >> $@
	$(LEVEL1)     $(H)/DataSources/whois/Mailboxes.html >> $@
	$(LEVEL1)     $(H)/DataSources/whois/Names.html >> $@
	$(LEVEL1)     $(H)/DataSources/whois/OutputKeywords.html >> $@
	$(LEVEL1)     $(H)/DataSources/whois/RecordTypes.html >> $@
	$(LEVEL1)     $(H)/DataSources/whois/Subdisplays.html >> $@
	$(LEVEL1)     $(H)/DataSources/NetFind/Overview.html >> $@
	$(LEVEL1)     $(H)/DataSources/COSINE/RARE-WG3.html >> $@
	$(LEVEL1)     $(H)/DataSources/TexInfo/Overview.html >> $@
	$(LEVEL1)     $(H)/DataSources/Bruno/Newsletter.html >> $@
	$(LEVEL1)     $(H)/DataSources/Bruno/Mailserver.html >> $@
	$(LEVEL1)     $(H)/DataSources/Bruno/Overview.html >> $@
	$(LEVEL1)     $(H)/DataSources/CONCISE/UserGuide/Commands/GettingHelp.html >> $@
	$(LEVEL1)     $(H)/DataSources/CONCISE/UserGuide/Commands/MovingAround.html >> $@
	$(LEVEL1)     $(H)/DataSources/CONCISE/UserGuide/Commands/GettingIndexes.html >> $@
	$(LEVEL1)     $(H)/DataSources/CONCISE/UserGuide/Commands/Overview.html >> $@
	$(LEVEL1)     $(H)/DataSources/CONCISE/UserGuide/Commands/Information.html >> $@
	$(LEVEL1)     $(H)/DataSources/CONCISE/UserGuide/Commands/Searching.html >> $@
	$(LEVEL1)     $(H)/DataSources/CONCISE/UserGuide/Commands/Comment.html >> $@
	$(LEVEL1)     $(H)/DataSources/CONCISE/UserGuide/Commands/Register.html >> $@
	$(LEVEL1)     $(H)/DataSources/CONCISE/UserGuide/Stored.html >> $@
	$(LEVEL1)     $(H)/DataSources/CONCISE/UserGuide/Start.html >> $@
	$(LEVEL1)     $(H)/DataSources/CONCISE/UserGuide/Commands.html >> $@
	$(LEVEL1)     $(H)/DataSources/CONCISE/UserGuide/Structured.html >> $@
	$(LEVEL1)     $(H)/DataSources/CONCISE/UserGuide/Overview.html >> $@
	$(LEVEL1)     $(H)/DataSources/CONCISE/UserGuide/Advanced.html >> $@
	$(LEVEL1)     $(H)/DataSources/CONCISE/UserGuide/Examples.html >> $@
	$(LEVEL1)     $(H)/DataSources/CONCISE/UserGuide/Help.html >> $@
	$(LEVEL1)     $(H)/DataSources/CONCISE/help.html >> $@
	$(LEVEL1)     $(H)/DataSources/Mailbase/UserGuide/Overview.html >> $@
	$(LEVEL1)     $(H)/DataSources/Mailbase/UserGuide/Commands.html >> $@
	$(LEVEL1)     $(H)/DataSources/Mailbase/UserGuide/Lists.html >> $@
	$(LEVEL1)     $(H)/DataSources/Mailbase/UserGuide/Addresses.html >> $@
	$(LEVEL1)     $(H)/DataSources/Mailbase/UserGuide/Hints.html >> $@
	$(LEVEL1)     $(H)/DataSources/LISTSERV/lead.html >> $@
	$(LEVEL1)     $(H)/DataSources/LISTSERV/Overview.html >> $@
	$(LEVEL1)     $(H)/DataSources/byOrganisation/Overview.html >> $@
	$(LEVEL1)     $(H)/DataSources/bySubject/Internet/IETF_IS.html >> $@
	$(LEVEL1)     $(H)/DataSources/bySubject/Internet/RIPE.html >> $@
	$(LEVEL1)     $(H)/DataSources/bySubject/Bio/Overview.html >> $@
	$(LEVEL1)     $(H)/DataSources/bySubject/Computing/Algorithms.html >> $@
	$(LEVEL1)     $(H)/DataSources/bySubject/Computing/Languages.html >> $@
	$(LEVEL1)     $(H)/DataSources/bySubject/Computing/CyberPunk/CyberPunk.html >> $@
	$(LEVEL1)     $(H)/DataSources/bySubject/Computing/Overview.html >> $@
	$(LEVEL1)     $(H)/DataSources/bySubject/Physics/HEP.html >> $@
	$(LEVEL1)     $(H)/DataSources/bySubject/Physics/Conferences/Overview.html >> $@
	$(LEVEL1)     $(H)/DataSources/bySubject/Physics/Conferences/Caribbean93/Overview.html >> $@
	$(LEVEL1)     $(H)/DataSources/bySubject/Physics/Conferences/Caribbean93/Invitation.html >> $@
	$(LEVEL1)     $(H)/DataSources/bySubject/Physics/Conferences/Caribbean93/PreRegistration.html >> $@
	$(LEVEL1)     $(H)/DataSources/bySubject/Physics/Conferences/Caribbean93/Transportation.html >> $@
	$(LEVEL1)     $(H)/DataSources/bySubject/Physics/Conferences/Caribbean93/PlaceAndDate.html >> $@
	$(LEVEL1)     $(H)/DataSources/bySubject/Physics/Conferences/Caribbean93/Purpose.html >> $@
	$(LEVEL1)     $(H)/DataSources/bySubject/Physics/Conferences/Caribbean93/Accomodation.html >> $@
	$(LEVEL1)     $(H)/DataSources/bySubject/Physics/Conferences/Caribbean93/WorkingSchedule.html >> $@
	$(LEVEL1)     $(H)/DataSources/bySubject/Physics/Conferences/Caribbean93/Registration.html >> $@
	$(LEVEL1)     $(H)/DataSources/bySubject/Physics/Conferences/Caribbean93/RegistrationFees.html >> $@
	$(LEVEL1)     $(H)/DataSources/bySubject/Physics/Conferences/Caribbean93/Fellowships.html >> $@
	$(LEVEL1)     $(H)/DataSources/bySubject/Physics/Conferences/Caribbean93/Sponsoring.html >> $@
	$(LEVEL1)     $(H)/DataSources/bySubject/Physics/Conferences/Caribbean93/Miscellaneous.html >> $@
	$(LEVEL1)     $(H)/DataSources/bySubject/Physics/Conferences/SUSSP93/Annoucement.html >> $@
	$(LEVEL1)     $(H)/DataSources/bySubject/Physics/Conferences/Waikoloa93/Overview.html >> $@
	$(LEVEL1)     $(H)/DataSources/bySubject/Networking.html >> $@
	$(LEVEL1)     $(H)/DataSources/bySubject/Networking/IncompleteGuide.html >> $@
	$(LEVEL1)     $(H)/DataSources/bySubject/Overview.html >> $@
	$(LEVEL1)     $(H)/DataSources/bySubject/Gone.html >> $@
	$(LEVEL1)     $(H)/DataSources/bySubject/Libraries.html >> $@
	$(LEVEL1)     $(H)/DataSources/WHO/FieldNames.html >> $@
	$(LEVEL1)     $(H)/DataSources/LISTSERV_2/Overview.html >> $@
	$(LEVEL1)     $(H)/DataSources/WWW/Servers.html >> $@
	$(LEVEL1)     $(H)/DataSources/WWW/UnstableServers.html >> $@
	$(LEVEL1)     $(H)/DataSources/Overview.html >> $@
	$(LEVEL1)     $(H)/DataSources/ASTRA.html >> $@
	$(LEVEL1)     $(H)/DataSources/Yanoff.html >> $@
	$(LEVEL1)     $(H)/DataSources/ByAccess.html >> $@
	$(LEVEL1)     $(H)/DataSources/Available.html >> $@
	$(LEVEL1)     $(H)/DataSources/Internet.html >> $@
	$(LEVEL1)     $(H)/DataSources/Sting.html >> $@
	$(LEVEL1)     $(H)/DataSources/Yanoff_920526.html >> $@
	$(LEVEL1)     $(H)/DataSources/Journals.html >> $@
	$(LEVEL1)     $(H)/DataSources/Top.html >> $@
	$(LEVEL1)     $(H)/DataSources/WAIS/ByHost.html >> $@
	$(LEVEL1)     $(H)/DataSources/WAIS/BySource.html >> $@
	$(LEVEL1)     $(H)/DataSources/Yanoff_920527.html >> $@
	$(LEVEL1)     $(H)/DataSources/Yanoff_930107.html >> $@
products:
	$(LEVEL1)     $(H)/Products/DynaText/EBT.html >> $@
	$(LEVEL1)     $(H)/Products/DynaText/Overview.html >> $@
	$(LEVEL1)     $(H)/Products/Guide/fax.html >> $@
	$(LEVEL1)     $(H)/Products/Guide/Guide.html >> $@
	$(LEVEL1)     $(H)/Products/Guide/OWL.html >> $@
	$(LEVEL1)     $(H)/Products/Intermedia/IRIS.html >> $@
	$(LEVEL1)     $(H)/Products/Intermedia/Intermedia.html >> $@
	$(LEVEL1)     $(H)/Products/Microcosm/Microcosm.html >> $@
	$(LEVEL1)     $(H)/Products/WAIS/Sources/Political.html >> $@
	$(LEVEL1)     $(H)/Products/WAIS/Sources/Commercial.html >> $@
	$(LEVEL1)     $(H)/Products/WAIS/Sources/Academic.html >> $@
	$(LEVEL1)     $(H)/Products/WAIS/Sources/WAIS.html >> $@
	$(LEVEL1)     $(H)/Products/WAIS/Sources/NewsGroupRelated.html >> $@
	$(LEVEL1)     $(H)/Products/WAIS/Sources/SourceList.html >> $@
	$(LEVEL1)     $(H)/Products/WAIS/Sources/IntraOrganisation.html >> $@
	$(LEVEL1)     $(H)/Products/WAIS/Sources/Recreational.html >> $@
	$(LEVEL1)     $(H)/Products/WAIS/Sources/Overview.html >> $@
	$(LEVEL1)     $(H)/Products/WAIS/Sources.html >> $@
	$(LEVEL1)     $(H)/Products/WAIS/Overview.html >> $@
	$(LEVEL1)     $(H)/Products/WAIS/Digest_06.html >> $@
	$(LEVEL1)     $(H)/Products/WAIS/DiscussionGroup.html >> $@
	$(LEVEL1)     $(H)/Products/WAIS/Releases.html >> $@
	$(LEVEL1)     $(H)/Products/WAIS/Release_b2.html >> $@
	$(LEVEL1)     $(H)/Products/WAIS/Bibliography.html >> $@
	$(LEVEL1)     $(H)/Products/WAIS/Spero_1.html >> $@
	$(LEVEL1)     $(H)/Products/WAIS/Kahle.html >> $@
	$(LEVEL1)     $(H)/Products/WAIS/Owen.html >> $@
	$(LEVEL1)     $(H)/Products/WAIS/TMC.html >> $@
	$(LEVEL1)     $(H)/Products/WAIS/Linoff.html >> $@
	$(LEVEL1)     $(H)/Products/WAIS/Waltz.html >> $@
	$(LEVEL1)     $(H)/Products/WAIS/Mucci.html >> $@
	$(LEVEL1)     $(H)/Products/WAIS/Releaseb.html >> $@
	$(LEVEL1)     $(H)/Products/Xanadu/Xanadu.html >> $@
	$(LEVEL1)     $(H)/Products/Xanadu/XOC.html >> $@
	$(LEVEL1)     $(H)/Products/Engelbart/Seminar.html >> $@
	$(LEVEL1)     $(H)/Products/Doorway/Overview.html >> $@
	$(LEVEL1)     $(H)/Products/Gopher/Overview.html >> $@
	$(LEVEL1)     $(H)/Products/Gopher/headers.html >> $@
	$(LEVEL1)     $(H)/Products/Hyperbole/Overview.html >> $@
	$(LEVEL1)     $(H)/Products/AMIX/Introduction.html >> $@
	$(LEVEL1)     $(H)/Products/MediaView/Mail.html >> $@
	$(LEVEL1)     $(H)/Products/Interes/Mail.html >> $@
	$(LEVEL1)     $(H)/Products/IRProducts/LQ-Text/Overview.html >> $@
	$(LEVEL1)     $(H)/Products/IRProducts/Overview.html >> $@
	$(LEVEL1)     $(H)/Products/EHTS.html >> $@
	$(LEVEL1)     $(H)/Products/Overview.html >> $@
	$(LEVEL1)     $(H)/Products/Essence/Annoucement.html >> $@

conferences:
	$(LEVEL1)     $(H)/Conferences/HT91/Poster/Notes.html >> $@
	$(LEVEL1)     $(H)/Conferences/HT91/Courses/C9_Outline.html >> $@
	$(LEVEL1)     $(H)/Conferences/HT91/Overview.html >> $@
	$(LEVEL1)     $(H)/Conferences/HT91/PosterPrep.html >> $@
	$(LEVEL1)     $(H)/Conferences/HT91/Denoers.html >> $@
	$(LEVEL1)     $(H)/Conferences/ECHT90/Pap02.html >> $@
	$(LEVEL1)     $(H)/Conferences/ECHT90/Pap07.html >> $@
	$(LEVEL1)     $(H)/Conferences/ECHT90/Pap05.html >> $@
	$(LEVEL1)     $(H)/Conferences/ECHT90/Introduction.html >> $@
	$(LEVEL1)     $(H)/Conferences/ECHT90/People.html >> $@
	$(LEVEL1)     $(H)/Conferences/ECHT90/Pan.html >> $@
	$(LEVEL1)     $(H)/Conferences/ECHT90/Pap03.html >> $@
	$(LEVEL1)     $(H)/Conferences/ECHT90/Pap01.html >> $@
	$(LEVEL1)     $(H)/Conferences/ECHT90/Journals.html >> $@
	$(LEVEL1)     $(H)/Conferences/ECHT90/Standardisation.html >> $@
	$(LEVEL1)     $(H)/Conferences/ECHT90/Perseus.html >> $@
	$(LEVEL1)     $(H)/Conferences/ECHT90/GlasgowOnline.html >> $@
	$(LEVEL1)     $(H)/Conferences/ECHT90/Points.html >> $@
	$(LEVEL1)     $(H)/Conferences/ECHT90/Structured.html >> $@
	$(LEVEL1)     $(H)/Conferences/ECHT90/Pap08.html >> $@
	$(LEVEL1)     $(H)/Conferences/ECHT90/Tutorial2.html >> $@
	$(LEVEL1)     $(H)/Conferences/ECHT90/Tutorial8.html >> $@
	$(LEVEL1)     $(H)/Conferences/ECHT90/Authors.html >> $@
	$(LEVEL1)     $(H)/Conferences/ECHT90/Pap06.html >> $@
	$(LEVEL1)     $(H)/Conferences/ECHT90/Pap04.html >> $@
	$(LEVEL1)     $(H)/Conferences/ECHT90/Pap10.html >> $@
	$(LEVEL1)     $(H)/Conferences/ECHT90/Conclusions.html >> $@
	$(LEVEL1)     $(H)/Conferences/ECHT90/Programme.html >> $@
	$(LEVEL1)     $(H)/Conferences/ECHT90/HTandIR.html >> $@
	$(LEVEL1)     $(H)/Conferences/ECHT90/Impressions.html >> $@
	$(LEVEL1)     $(H)/Conferences/ECHT90/Pan6.html >> $@
	$(LEVEL1)     $(H)/Conferences/ECHT90/Participants.html >> $@
	$(LEVEL1)     $(H)/Conferences/ECHT90/Pap09.html >> $@
	$(LEVEL1)     $(H)/Conferences/ECHT90/Exhibition.html >> $@
	$(LEVEL1)     $(H)/Conferences/ECHT90/Tutorial6.html >> $@
	$(LEVEL1)     $(H)/Conferences/ECHT90/Pan4.html >> $@
	$(LEVEL1)     $(H)/Conferences/ECHT90/Pan5.html >> $@
	$(LEVEL1)     $(H)/Conferences/CSCW92/CallForPapers.html >> $@
	$(LEVEL1)     $(H)/Conferences/ECHT92/CallForParticipation.html >> $@
	$(LEVEL1)     $(H)/Conferences/IETF92/IAFA-BOF.html >> $@
	$(LEVEL1)     $(H)/Conferences/IETF92/IETF-9203.html >> $@
	$(LEVEL1)     $(H)/Conferences/IETF92/JillFoster.html >> $@
	$(LEVEL1)     $(H)/Conferences/IETF92/WWX_BOF.html >> $@
	$(LEVEL1)     $(H)/Conferences/IETF92/WWX_BOF_mins.html >> $@
	$(LEVEL1)     $(H)/Conferences/IETF92/LivingDocuments.html >> $@
	$(LEVEL1)     $(H)/Conferences/IETF92/WWX_BOF_Sollins.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/Programme.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/Sessions.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/MondayPM.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/TuesdayAM.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/TuesdayPM.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/WednesdayAM.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/WednesdayPM.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/ThursdayAM.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/Demonstrations.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/Posters.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/Registration.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/RegistrationForm.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/Social.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/Accommodation.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/GettingThere.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/Venue.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/Sponsors.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/Switch.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/W3Paper/Abstract.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/W3Paper/Architecure.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/W3Paper/DataModel.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/W3Paper/Overview.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/W3Paper/Scope.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/Demonstrations/Argosi.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/Demonstrations/BIDS.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/Demonstrations/Brunel.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/Demonstrations/Consice.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/Demonstrations/DS-MHS.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/Demonstrations/EAN-GUI.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/Demonstrations/Introductions.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/Demonstrations/Merit.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/Demonstrations/Muftic.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/Demonstrations/S2-2.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/Demonstrations/Timetable.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/Demonstrations/Y-NET.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/BOFs.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC92/WhatIsABOF.html >> $@
	$(LEVEL1)     $(H)/Conferences/Overview.html >> $@
	$(LEVEL1)     $(H)/Conferences/JANET_UG_92/Annoucement.html >> $@
	$(LEVEL1)     $(H)/Conferences/NSC92/CallForParticpation.html >> $@
	$(LEVEL1)     $(H)/Conferences/NSC92/Venue.html >> $@
	$(LEVEL1)     $(H)/Conferences/NSC92/PostersAndDemosSolicited.html >> $@
	$(LEVEL1)     $(H)/Conferences/NSC92/FurtherInformation.html >> $@
	$(LEVEL1)     $(H)/Conferences/NSC92/PapersSolicited.html >> $@
	$(LEVEL1)     $(H)/Conferences/NSC92/Committees.html >> $@
	$(LEVEL1)     $(H)/Conferences/INET93/CFP.html >> $@
	$(LEVEL1)     $(H)/Conferences/JENC4/Overview.html >> $@
	$(LEVEL1)     $(H)/Conferences/IETF25/JillFosterTripReport.html >> $@
