mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-25 07:27:57 +00:00
b9c72bebe4
default.mk: make sure org-release is defined when starting emacs in batch mode. Add a suffix to see if this definition leaks into the installed version someplace. When running from an installed version, this definition is pulled in from org-install.el.
78 lines
1.9 KiB
Makefile
78 lines
1.9 KiB
Makefile
##----------------------------------------------------------------------
|
|
## YOU MUST EDIT THE FOLLOWING LINES
|
|
##----------------------------------------------------------------------
|
|
|
|
# Name of your emacs binary
|
|
EMACS = emacs
|
|
|
|
# Where local software is found
|
|
prefix = /usr/share
|
|
|
|
# Where local lisp files go.
|
|
lispdir = $(prefix)/emacs/site-lisp/org
|
|
|
|
# Where local data files go.
|
|
datadir = $(prefix)/emacs/etc/org
|
|
|
|
# Where info files go.
|
|
infodir = $(prefix)/info
|
|
|
|
##----------------------------------------------------------------------
|
|
## YOU MAY NEED TO EDIT THESE
|
|
##----------------------------------------------------------------------
|
|
|
|
# Using emacs in batch mode.
|
|
BATCH = $(EMACS) -batch -Q \
|
|
-L . \
|
|
--eval '(defconst org-release "$(ORGVERSION)-Make")' \
|
|
|
|
# run tests
|
|
BTEST = $(EMACS) -batch \
|
|
$(BTEST_EXTRA) \
|
|
-L lisp/ \
|
|
--eval '(defconst org-release "$(ORGVERSION)-Test")' \
|
|
-l testing/org-test.el \
|
|
-eval "(setq org-confirm-babel-evaluate nil)" \
|
|
-f org-test-run-batch-tests
|
|
|
|
# How to byte-compile the whole source directory
|
|
ELCDIR = $(BATCH) \
|
|
--eval '(batch-byte-recompile-directory 0)'
|
|
|
|
# How to byte-compile a single source file
|
|
ELC = $(BATCH) -f batch-byte-compile
|
|
|
|
# How to make a pdf file from a texinfo file
|
|
TEXI2PDF = texi2pdf
|
|
|
|
# How to make a pdf file from a tex file
|
|
PDFTEX = pdftex
|
|
|
|
# How to create directories
|
|
MKDIR = mkdir -p
|
|
|
|
# How to create the info files from the texinfo file
|
|
MAKEINFO = makeinfo
|
|
|
|
# How to create the HTML file
|
|
TEXI2HTML = makeinfo --html --number-sections
|
|
|
|
# How to find files
|
|
FIND = find
|
|
|
|
# How to remove files
|
|
RM = rm -f
|
|
|
|
# How to remove files recursively
|
|
RMR = rm -fr
|
|
|
|
# How to stream edit a file
|
|
SED = sed
|
|
|
|
# How to copy the lisp files and elc files to their destination.
|
|
# CP = cp -p # try this if there is no install
|
|
CP = install -p
|
|
|
|
# Name of the program to install info files
|
|
INSTALL_INFO = install-info
|