-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Makefile
58 lines (50 loc) · 1.37 KB
/
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
50
51
52
53
54
55
56
57
58
-include config.mk
include default.mk
.PHONY: lisp docs
all: lisp docs
help:
$(info make all - generate lisp and manual)
$(info make lisp - generate byte-code and autoloads)
$(info make redo - re-generate byte-code and autoloads)
$(info make docs - generate all manual formats)
$(info make redo-docs - re-generate all manual formats)
$(info make texi - generate texi manual)
$(info make info - generate info manual)
$(info make html - generate html manual file)
$(info make html-dir - generate html manual directory)
$(info make pdf - generate pdf manual)
$(info make publish - publish snapshot manuals)
$(info make release - publish release manuals)
$(info make stats - generate statistics)
$(info make stats-upload - publish statistics)
$(info make clean - remove most generated files)
@printf "\n"
lisp:
@$(MAKE) -C lisp lisp
redo:
@$(MAKE) -C lisp clean lisp
docs:
@$(MAKE) -C docs docs
redo-docs:
@$(MAKE) -C docs redo-docs
texi:
@$(MAKE) -C docs texi
info:
@$(MAKE) -C docs info
html:
@$(MAKE) -C docs html
html-dir:
@$(MAKE) -C docs html-dir
pdf:
@$(MAKE) -C docs pdf
publish:
@$(MAKE) -C docs publish
release:
@$(MAKE) -C docs release
stats:
@$(MAKE) -C docs stats
stats-upload:
@$(MAKE) -C docs stats-upload
clean:
@$(MAKE) -C lisp clean
@$(MAKE) -C docs clean