[project @ 2001-12-18 12:13:05 by simonmar]
[ghc-hetmet.git] / ghc / docs / users_guide / Makefile
index da031a0..a45ac78 100644 (file)
@@ -7,4 +7,30 @@ endif
 
 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