blob: cc906bb22c970fd966fff5a8bb8db69f8f5124d8 (
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
|
# 'make elc' byte-compiles the main emacs lisp files
# 'make info' formats the documentation files, producing info files
# 'make dvi' formats the documentation files, producing dvi files
# 'make all' does both of these tasks
#
# 'make infodvi' formats the documentation files, producing info and dvi files
EMACS=emacs
all: elc info dvi
elc:
cd lisp; $(MAKE) EMACS=$(EMACS) all
info:
cd texi; $(MAKE) EMACS=$(EMACS) info
dvi:
cd texi; $(MAKE) EMACS=$(EMACS) dvi
infodvi:
cd texi; $(MAKE) EMACS=$(EMACS) all
distclean:
cd lisp; $(MAKE) distclean
cd texi; $(MAKE) distclean
clean:
cd lisp; $(MAKE) clean
cd texi; $(MAKE) clean
|