diff options
author | Fred Drake <fdrake@acm.org> | 1999-02-18 16:31:05 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-02-18 16:31:05 (GMT) |
commit | 997eec7cca2bbe1e1e6b1568126b849ce3c49e63 (patch) | |
tree | a29ff0677a38c64b03e007a4fb22d3436ce2267a | |
parent | 607aed7a2cb3bc43d3e7a4a5c94e273666da6948 (diff) | |
download | cpython-997eec7cca2bbe1e1e6b1568126b849ce3c49e63.zip cpython-997eec7cca2bbe1e1e6b1568126b849ce3c49e63.tar.gz cpython-997eec7cca2bbe1e1e6b1568126b849ce3c49e63.tar.bz2 |
Minor adjustments to reflect esis2sgml.py changes.
Added "esis" target to only generate the ESIS data.
-rw-r--r-- | Doc/tools/sgmlconv/make.rules | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/tools/sgmlconv/make.rules b/Doc/tools/sgmlconv/make.rules index 7f74fd7..029fb41 100644 --- a/Doc/tools/sgmlconv/make.rules +++ b/Doc/tools/sgmlconv/make.rules @@ -15,6 +15,7 @@ XMLTARGETS= $(patsubst %.tex,%.xml,$(wildcard *.tex)) all: sgml +esis: $(ESISTARGETS) sgml: $(SGMLTARGETS) xml: $(XMLTARGETS) @@ -31,7 +32,7 @@ $(XMLTARGETS): $(ESIS2ML) $(FIXGES) $(LATEX2ESIS) $< | $(DOCFIXER) > $@ .esis.sgml: - $(ESIS2ML) $< | $(FIXGES) > $@ + $(ESIS2ML) --sgml --autoclose para $< | $(FIXGES) > $@ .esis.xml: $(ESIS2ML) --xml $< | $(FIXGES) > $@ |