org-list: Fix failing test
[org-mode.git] / Makefile
blob7048497383084f5d51af972229c45ec32d7f70a6
1 # Makefile - for the org-mode distribution
2 # GNU make is required
4 # This file is not part of GNU Emacs
6 # set up environment
7 include mk/default.mk # defaults, customizable via "local.mk"
8 -include local.mk # optional local customization, use default.mk as template
10 # default target is "all" unless overridden in local.mk
11 all::
13 # Describe valid make targets for org-mode.
14 .PHONY: targets help helpall
15 targets: help
16 help helpall::
17 $(info )
18 $(info Getting Help)
19 $(info ============)
20 $(info make help - show brief help)
21 $(info make targets - ditto)
22 $(info make helpall - show extended help)
23 $(info )
24 $(info Build and Check)
25 $(info ===============)
26 $(info make - build Org ELisp and all documentation)
27 $(info make all - ditto)
28 $(info make compile - build Org ELisp files)
29 $(info make single - build Org ELisp files, single Emacs per source)
30 $(info make autoloads - create org-loaddefs.el to load Org in-place)
31 $(info make test - build Org ELisp files and run test suite)
32 helpall::
33 $(info make test-dirty - check without building first)
34 $(info make compile-dirty - build only stale Org ELisp files)
35 $(info )
36 $(info Compatibility)
37 $(info =============)
38 $(info make oldorg - what the old make did: compile autoloads info)
39 $(info )
40 $(info Cleaning)
41 $(info ========)
42 $(info make clean - remove built Org ELisp files and documentation)
43 $(info make cleanall - remove everything that can be built and all remnants)
44 $(info make clean-install - remove previous Org installation)
45 $(info )
46 $(info Configuration Check)
47 $(info ===================)
48 help helpall::
49 $(info make config - check main configuration)
50 helpall::
51 $(info make config-version - check Org version)
52 $(info make config-test - check test configuration)
53 $(info make config-exe - check executables configuration)
54 $(info make config-cmd - check command configuration)
55 $(info make config-all - check all configuration)
56 $(info )
57 $(info Documentation)
58 $(info =============)
59 help helpall::
60 $(info make doc - build all documentation)
61 helpall::
62 $(info make docs - ditto)
63 help helpall::
64 $(info make info - build Info documentation)
65 helpall::
66 $(info make html - build HTML documentation)
67 $(info make pdf - build PDF documentation)
68 $(info make card - build reference cards)
69 $(info make refcard - ditto)
70 help helpall::
71 $(info )
72 $(info Installation)
73 $(info ============)
74 $(info make install - build and install Org)
75 helpall::
76 $(info make install-etc - build and install files in /etc)
77 $(info make install-lisp - build and install Org Elisp files)
78 $(info make install-info - build and install Info documentation)
79 $(info )
80 $(info Convenience)
81 $(info ===========)
82 $(info make up0 - pull from upstream)
83 $(info make up1 - pull from upstream, build and check)
84 $(info make up2 - pull from upstream, build, check and install)
85 $(info make update - pull from upstream and build)
86 $(info make update2 - pull from upstream, build and install)
87 $(info make uncompiled - combine cleanlisp and autoloads)
88 $(info make local.mk - create new local.mk as template for adaptation)
89 help helpall::
90 $(info )
91 $(info Full documentation on Worg)
92 $(info ==========================)
93 $(info http://orgmode.org/worg/dev/org-build-system.html)
94 @echo ""
96 include mk/targets.mk # toplevel make machinery