org-capture.el: Protect the text used for replacement from being further replaced
[org-mode.git] / default.mk
blob4844d89985fc4326099df8d8c07d7388caf9cf8c
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 = org-e-* org-md org-export # e.g. the new 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-install.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
70 # How to generate local.mk
71 MAKE_LOCAL_MK = $(BATCH) \
72 --eval '(add-to-list '"'"'load-path "./lisp")' \
73 --eval '(load "org-compat.el")' \
74 --eval '(load "../utils/org-fixup.el")' \
75 --eval '(org-make-local-mk)'
77 # Emacs must be started in lisp directory
78 BATCHL = $(BATCH) \
79 --eval '(add-to-list '"'"'load-path ".")'
81 # How to generate org-install.el
82 MAKE_ORG_INSTALL = $(BATCHL) \
83 --eval '(load "org-compat.el")' \
84 --eval '(load "../utils/org-fixup.el")' \
85 --eval '(org-make-org-install)'
87 # How to generate org-version.el
88 MAKE_ORG_VERSION = $(BATCHL) \
89 --eval '(load "org-compat.el")' \
90 --eval '(load "../utils/org-fixup.el")' \
91 --eval '(org-make-org-version "$(ORGVERSION)" "$(GITVERSION)" "$(datadir)")'
93 # How to byte-compile the whole source directory
94 ELCDIR = $(BATCHL) \
95 --eval '(batch-byte-recompile-directory 0)'
97 # How to byte-compile a single file
98 ELC = $(BATCHL) \
99 --eval '(batch-byte-compile)'
101 # How to make a pdf file from a texinfo file
102 TEXI2PDF = texi2pdf --batch --clean
104 # How to make a pdf file from a tex file
105 PDFTEX = pdftex
107 # How to create directories with leading path components
108 # MKDIR = mkdir -m 755 -p # try this if you have no install
109 MKDIR = install -m 755 -d
111 # How to create the info files from the texinfo file
112 MAKEINFO = makeinfo
114 # How to create the HTML file
115 TEXI2HTML = makeinfo --html --number-sections
117 # How to find files
118 FIND = find
120 # How to remove files
121 RM = rm -f
123 # How to remove files recursively
124 RMR = rm -fr
126 # How to copy the lisp files and elc files to their destination.
127 # CP = cp -p # try this if you have no install
128 CP = install -m 644 -p
130 # How to obtain administrative privileges
131 # leave blank if you don't need this
132 # SUDO =
133 SUDO = sudo
135 # Name of the program to install info files
136 # INSTALL_INFO = ginstall-info # Debian: avoid harmless warning message
137 INSTALL_INFO = install-info
139 # target method for 'compile'
140 ORGCM = dirall
141 # ORGCM = dirall # 1x slowdown compared to default compilation method
142 # ORGCM = single # 4x one Emacs process per compilation
143 # ORGCM = source # 5x ditto, but remove compiled file immediately
144 # ORGCM = slint1 # 3x possibly elicit more warnings
145 # ORGCM = slint2 # 7x possibly elicit even more warnings