Merge branch 'maint'
[org-mode.git] / mk / default.mk
blob1bafecb8859b4e3249e7517c0db2521445a01fc7
1 ##----------------------------------------------------------------------
2 ## NEVER EDIT THIS FILE, PUT ANY ADAPTATIONS INTO local.mk
3 ##-8<-------------------------------------------------------------------
4 ## CHECK AND ADAPT THE FOLLOWING DEFINITIONS
5 ##----------------------------------------------------------------------
7 # Name of your emacs binary
8 EMACS = emacs
10 # Where local software is found
11 prefix = /usr/share
13 # Where local lisp files go.
14 lispdir= $(prefix)/emacs/site-lisp/org
16 # Where local data files go.
17 datadir = $(prefix)/emacs/etc/org
19 # Where info files go.
20 infodir = $(prefix)/info
22 # Define if you only need info documentation, the default includes html and pdf
23 #ORG_MAKE_DOC = info # html pdf
25 # Define if you want to include some (or all) files from contrib/lisp
26 # just the filename please (no path prefix, no .el suffix), maybe with globbing
27 #ORG_ADD_CONTRIB = ox-* # e.g. the contributed exporter
29 # Where to create temporary files for the testsuite
30 # respect TMPDIR if it is already defined in the environment
31 TMPDIR ?= /tmp
32 testdir = $(TMPDIR)/tmp-orgtest
34 # Configuration for testing
35 # add options before standard load-path
36 BTEST_PRE =
37 # add options after standard load path
38 BTEST_POST =
39 # -L <path-to>/ert # needed for Emacs23, Emacs24 has ert built in
40 # -L <path-to>/ess # needed for running R tests
41 # -L <path-to>/htmlize # need at least version 1.34 for source code formatting
42 BTEST_OB_LANGUAGES = awk C fortran maxima lilypond octave python sh
43 # R # requires ESS to be installed and configured
44 # extra packages to require for testing
45 BTEST_EXTRA =
46 # ess-site # load ESS for R tests
47 ##->8-------------------------------------------------------------------
48 ## YOU MAY NEED TO ADAPT THESE DEFINITIONS
49 ##----------------------------------------------------------------------
51 # How to run tests
52 req-ob-lang = --eval '(require '"'"'ob-$(ob-lang))'
53 req-extra = --eval '(require '"'"'$(req))'
54 BTEST = $(BATCH) \
55 $(BTEST_PRE) \
56 --eval '(add-to-list '"'"'load-path "./lisp")' \
57 --eval '(add-to-list '"'"'load-path "./testing")' \
58 $(BTEST_POST) \
59 -l org-loaddefs.el \
60 -l testing/org-test.el \
61 $(foreach ob-lang,$(BTEST_OB_LANGUAGES),$(req-ob-lang)) \
62 $(foreach req,$(BTEST_EXTRA),$(req-extra)) \
63 --eval '(setq org-confirm-babel-evaluate nil)' \
64 -f org-test-run-batch-tests
66 # Using emacs in batch mode.
67 # BATCH = $(EMACS) -batch -vanilla # XEmacs
68 BATCH = $(EMACS) -batch -Q \
69 --eval '(setq vc-handled-backends nil)'
71 # Emacs must be started in toplevel directory
72 BATCHO = $(BATCH) \
73 --eval '(add-to-list '"'"'load-path "./lisp")'
75 # How to generate local.mk
76 MAKE_LOCAL_MK = $(BATCHO) \
77 --eval '(load "org-compat.el")' \
78 --eval '(load "../mk/org-fixup.el")' \
79 --eval '(org-make-local-mk)'
81 # Emacs must be started in lisp directory
82 BATCHL = $(BATCH) \
83 --eval '(add-to-list '"'"'load-path ".")'
85 # How to generate org-loaddefs.el
86 MAKE_ORG_INSTALL = $(BATCHL) \
87 --eval '(load "org-compat.el")' \
88 --eval '(load "../mk/org-fixup.el")' \
89 --eval '(org-make-org-loaddefs)'
91 # How to generate org-version.el
92 MAKE_ORG_VERSION = $(BATCHL) \
93 --eval '(load "org-compat.el")' \
94 --eval '(load "../mk/org-fixup.el")' \
95 --eval '(org-make-org-version "$(ORGVERSION)" "$(GITVERSION)" "'$(datadir)'")'
97 # How to byte-compile the whole source directory
98 ELCDIR = $(BATCHL) \
99 --eval '(batch-byte-recompile-directory 0)'
101 # How to byte-compile a single file
102 ELC = $(BATCHL) \
103 --eval '(batch-byte-compile)'
105 # How to make a pdf file from a texinfo file
106 TEXI2PDF = texi2pdf --batch --clean
108 # How to make a pdf file from a tex file
109 PDFTEX = pdftex
111 # How to create directories with leading path components
112 # MKDIR = mkdir -m 755 -p # try this if you have no install
113 MKDIR = install -m 755 -d
115 # How to create the info files from the texinfo file
116 MAKEINFO = makeinfo
118 # How to create the HTML file
119 TEXI2HTML = makeinfo --html --number-sections
121 # How to find files
122 FIND = find
124 # How to remove files
125 RM = rm -f
127 # How to remove files recursively
128 RMR = rm -fr
130 # How to copy the lisp files and elc files to their destination.
131 # CP = cp -p # try this if you have no install
132 CP = install -m 644 -p
134 # How to obtain administrative privileges
135 # leave blank if you don't need this
136 # SUDO =
137 SUDO = sudo
139 # Name of the program to install info files
140 # INSTALL_INFO = ginstall-info # Debian: avoid harmless warning message
141 INSTALL_INFO = install-info
143 # target method for 'compile'
144 ORGCM = dirall
145 # ORGCM = dirall # 1x slowdown compared to default compilation method
146 # ORGCM = single # 4x one Emacs process per compilation
147 # ORGCM = source # 5x ditto, but remove compiled file immediately
148 # ORGCM = slint1 # 3x possibly elicit more warnings
149 # ORGCM = slint2 # 7x possibly elicit even more warnings