diff options
author | Fred Drake <fdrake@acm.org> | 1999-04-29 19:04:55 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-04-29 19:04:55 (GMT) |
commit | 50c507e4b4d082323fefd393604f43f0cbe8871b (patch) | |
tree | e6e3c8debd08079a4dc6a5d62641c9c8d473786f /Doc/html | |
parent | 673c65e5007a6fabf261c476c2b692ec9f0747e6 (diff) | |
download | cpython-50c507e4b4d082323fefd393604f43f0cbe8871b.zip cpython-50c507e4b4d082323fefd393604f43f0cbe8871b.tar.gz cpython-50c507e4b4d082323fefd393604f43f0cbe8871b.tar.bz2 |
Added wcnew target to run the "wcnew" version of webchecker.
Diffstat (limited to 'Doc/html')
-rw-r--r-- | Doc/html/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Doc/html/Makefile b/Doc/html/Makefile index 77c74cb..fa7e6f5 100644 --- a/Doc/html/Makefile +++ b/Doc/html/Makefile @@ -15,6 +15,7 @@ TEXINPUTS=$(TOPDIR)/paper-$(PAPER):$(TOPDIR)/texinputs: # Where are the various programs? PYTHON= python WEBCHECKER=$(PYTHON) $(TOPDIR)/../Tools/webchecker/webchecker.py +WCNEW=$(PYTHON) $(TOPDIR)/../Tools/webchecker/wcnew.py MKAUX= PAPER=$(PAPER) TEXINPUTS=$(TEXINPUTS) $(TOOLSDIR)/mkdvi.sh --aux MKHTML= PAPER=$(PAPER) $(TOOLSDIR)/mkhtml.sh KPSEWHICH= TEXINPUTS=$(TEXINPUTS) kpsewhich tex @@ -114,6 +115,16 @@ webcheck: all $(WEBCHECKER) $(HTMLBASE)/ref/ $(WEBCHECKER) $(HTMLBASE)/tut/ +wcnew: all + $(WCNEW) $(HTMLBASE)/api/ + $(WCNEW) $(HTMLBASE)/doc/ + $(WCNEW) $(HTMLBASE)/ext/ + $(WCNEW) -m290000 $(HTMLBASE)/lib/ + $(WCNEW) $(HTMLBASE)/mac/ + $(WCNEW) $(HTMLBASE)/ref/ + $(WCNEW) $(HTMLBASE)/tut/ + + clean: rm -rf @webchecker.pickle |