Skip to content
Snippets Groups Projects
Commit 83f88146 authored by sof's avatar sof
Browse files

[project @ 1999-05-28 13:20:10 by sof]

semi-automatic support for indexing
parent 4a5b2787
No related merge requests found
......@@ -11,4 +11,30 @@ SRC_SGML2HTML_OPTS += -s 1
SGML_DOC = users_guide
# Generating index is semi-automatic, you need to:
#
# make users_guide.dvi ; make index ; make users_guide.dvi
#
# To work, it depends on you tweaking
#
# lib/sgml-tools/dist/sgmltool/latex2e/mapping
#
# to instead of saying
#
# </article> + "\\end{document}" +
#
# say
#
# </article> + "\\InputIfFileExists{index}{}{}"
# "\\end{document}" +
#
# That partially works around the problem, if nothing else.
#
index : users_guide.dvi
makeindex users_guide
@$(RM) $@
$(CP) users_guide.ind $@
$(RM) users_guide.dvi
include $(TOP)/mk/target.mk
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment