summaryrefslogtreecommitdiffstats
path: root/Doc/Makefile
blob: 0ccb7dea13e4ff69d1abd3d1d7608c5e0450b036 (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
TROFF=		ditroff
MS=		-ms
PREVIEW=	dpv

intro:		intro.dit
		$(PREVIEW) intro.dit

modules:	modules.dit
		$(PREVIEW) modules.dit

paper:		paper.dit
		$(PREVIEW) paper.dit

ref:		ref.dit
		$(PREVIEW) ref.dit

ALL=		intro.dit modules.dit paper.dit ref.dit

all:		$(ALL)

$(ALL):		macros.ms

clean:
		rm -f $(ALL)

.SUFFIXES:	.ms .dit

.ms.dit:
		$(TROFF) $(MS) $*.ms >$@