summaryrefslogtreecommitdiffstats
path: root/Doc/tools/sgmlconv/make.rules
blob: 491784ed129e0cd3cd9927a2a56602a6a1fa9ba9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# -*- makefile -*-
#
# Extra magic needed by the LaTeX->SGML conversion process.  This requires
# $(TOOLSDIR) to be properly defined.

DOCFIXER=	$(TOOLSDIR)/sgmlconv/docfixer.py
ESIS2ML=	$(TOOLSDIR)/sgmlconv/esis2sgml.py
FIXGES=		$(TOOLSDIR)/sgmlconv/fixgenents.sh
LATEX2ESIS=	$(TOOLSDIR)/sgmlconv/latex2esis.py

ESISTARGETS=	$(patsubst %.tex,%.esis,$(wildcard *.tex))
SGMLTARGETS=	$(patsubst %.tex,%.sgml,$(wildcard *.tex))
XMLTARGETS=	$(patsubst %.tex,%.xml,$(wildcard *.tex))


all:	xml

esis:	$(ESISTARGETS)
sgml:	$(SGMLTARGETS)
xml:	$(XMLTARGETS)

ESISTOOLS=	$(TOOLSDIR)/sgmlconv/esistools.py

$(ESISTARGETS): $(LATEX2ESIS) $(DOCFIXER) $(ESISTOOLS)
$(SGMLTARGETS): $(ESIS2ML) $(FIXGES)
$(XMLTARGETS): $(ESIS2ML) $(FIXGES)


.SUFFIXES: .esis .sgml .tex .xml

.tex.esis:
	$(LATEX2ESIS) $< temp.esis
	$(DOCFIXER) temp.esis $@
	rm temp.esis

.esis.sgml:
	$(ESIS2ML) --sgml --autoclose para $< | $(FIXGES) > $@

.esis.xml:
	$(ESIS2ML) --xml $< | $(FIXGES) > $@


clean:
	rm -f *.esis

clobber: clean
	rm -f *.sgml *.xml