-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
49 lines (41 loc) · 1023 Bytes
/
Makefile
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
48
49
# This is a hand-built makefile; it does not use Automake and suchlike.
TEXI2DVI = texi2dvi
MAKENFO = makeinfo
RM = rm -f
TARGETS = gnu-c-manual.dvi gnu-c-manual.info
GNU_C_MANUAL_SOURCES = gnu-c-manual.texi \
expressions.texi \
fdl.texi \
functions.texi \
lexical.texi \
preface.texi \
program.texi \
sample.texi \
statements.texi \
types.texi
CLEANFILES = \
gnu-c-manual.vr \
gnu-c-manual.tp \
gnu-c-manual.toc \
gnu-c-manual.pg \
gnu-c-manual.log \
gnu-c-manual.ky \
gnu-c-manual.fn \
gnu-c-manual.cps \
gnu-c-manual.cp \
gnu-c-manual.aux
DISTCLEANFILES = \
gnu-c-manual.dvi \
gnu-c-manual.info \
gnu-c-manual.html
all: $(TARGETS)
gnu-c-manual.dvi: $(GNU_C_MANUAL_SOURCES)
$(TEXI2DVI) gnu-c-manual.texi
gnu-c-manual.info: $(GNU_C_MANUAL_SOURCES)
$(MAKEINFO) gnu-c-manual.texi
gnu-c-manual.html: $(GNU_C_MANUAL_SOURCES)
$(MAKEINFO) --html --no-split gnu-c-manual.texi
clean:
$(RM) $(CLEANFILES)
distclean: clean
$(RM) $(DISTCLEANFILES)