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

[project @ 1997-12-16 11:01:13 by simonm]

Add SGML suffix rules.  Single-file documents only for the moment.
parent cefe0d53
No related merge requests found
......@@ -181,6 +181,31 @@ HASKELL_POST_COMPILE=$(patsubst %,$(HASKELL_SPLIT_POST),$(filter -split-objs,$(H
@$(RM) $@
fig2dev -L latex $< $@
#-----------------------------------------------------------------------------
# SGML suffix rules
#
# make sure these don't conflict with the literate rules!
%.sgml : %.vsgml
@$(RM) $@
expand $*.verb | $(SGMLVERB) > $@
%.dvi : %.sgml
@$(RM) $@
$(SGML2LATEX) -m --output=dvi $<
%.html : %.sgml
@$(RM) $@
$(SGML2HTML) $<
%.info : %.sgml
@$(RM) $@
$(SGML2INFO) $<
%.txt : %.sgml
@$(RM) $@
$(SGML2TXT) $<
#-----------------------------------------------------------------------------
# Literate suffix rules
......
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