X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Fdocs%2Fusers_guide%2FMakefile;h=81b4412f3079a5be240d9767cb71bed1558066c7;hb=286a25bb4e6c5baf8900874300dc095705d84918;hp=d73e14af8af5e056b84e4b7b268bb1a943bb31de;hpb=b3759cb5163225dde35386cb4a6b0ec9542cf9c8;p=ghc-hetmet.git diff --git a/ghc/docs/users_guide/Makefile b/ghc/docs/users_guide/Makefile index d73e14a..81b4412 100644 --- a/ghc/docs/users_guide/Makefile +++ b/ghc/docs/users_guide/Makefile @@ -1,33 +1,33 @@ TOP = ../.. include $(TOP)/mk/boilerplate.mk -ifeq "$(BIN_DIST)" "1" -install :: html dvi info -endif - -# These files are just concatenated to produce the complete document, in the -# same order as they are given below. +SGML_DOC = users_guide +INSTALL_SGML_DOC = users_guide -SGML_SRCS = \ - user.sgml \ - intro.sgml \ - 3-01-notes.sgml \ - using.sgml \ - runtime_control.sgml \ - profiling.sgml \ - debugging.sgml \ - sooner.sgml \ - lang.sgml \ - glasgow_exts.sgml \ - parallel.sgml \ - vs_haskell.sgml \ - libraries.sgml \ - posix.sgml \ - libmisc.sgml \ - gone_wrong.sgml \ - utils.sgml \ - end.sgml +# 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 +# +# + "\\end{document}" + +# +# say +# +# + "\\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 -SGML_DOC = users_guide include $(TOP)/mk/target.mk