Skip to content
Snippets Groups Projects
Commit 24143f31 authored by Simon Marlow's avatar Simon Marlow
Browse files

[project @ 1997-12-22 11:46:36 by simonm]

add a .sgml->.tex rule
parent 5142f916
No related merge requests found
......@@ -190,10 +190,19 @@ HASKELL_POST_COMPILE=$(patsubst %,$(HASKELL_SPLIT_POST),$(filter -split-objs,$(H
@$(RM) $@
expand $*.verb | $(SGMLVERB) > $@
%.tex : %.sgml
@$(RM) $@
$(SGML2LATEX) -m --output=tex $<
%.dvi : %.sgml
@$(RM) $@
$(SGML2LATEX) -m --output=dvi $<
# Not yet: we already have a %.ps : %.dvi rule, this one would conflict.
#%,ps : %.sgml
# @$(RM) $@
# $(SGML2LATEX) -m --output=ps $<
%.html : %.sgml
@$(RM) $@
$(SGML2HTML) $<
......
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