-
-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathMakefile
More file actions
58 lines (50 loc) · 1.39 KB
/
Makefile
File metadata and controls
58 lines (50 loc) · 1.39 KB
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