default.mk 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. ##----------------------------------------------------------------------
  2. ## NEVER EDIT THIS FILE, PUT ANY ADAPTATIONS INTO local.mk
  3. ##-8<-------------------------------------------------------------------
  4. ## CHECK AND ADAPT THE FOLLOWING DEFINITIONS
  5. ##----------------------------------------------------------------------
  6. # Name of your emacs binary
  7. EMACS = emacs
  8. # Where local software is found
  9. prefix = /usr/share
  10. # Where local lisp files go.
  11. lispdir= $(prefix)/emacs/site-lisp/org
  12. # Where local data files go.
  13. datadir = $(prefix)/emacs/etc/org
  14. # Where info files go.
  15. infodir = $(prefix)/info
  16. # Define if you only need info documentation, the default includes html and pdf
  17. #ORG_MAKE_DOC = info # html pdf
  18. # Define which git branch to switch to during update. Does not switch
  19. # the branch when undefined.
  20. GIT_BRANCH =
  21. # Where to create temporary files for the testsuite
  22. # respect TMPDIR if it is already defined in the environment
  23. TMPDIR ?= /tmp
  24. testdir = $(TMPDIR)/tmp-orgtest
  25. # Configuration for testing
  26. # Verbose ERT summary by default for Emacs-28 and above.
  27. # To override:
  28. # - Add to local.mk
  29. # EMACS_TEST_VERBOSE =
  30. # - Export EMACS_TEST_VERBOSE environment variable with empty value
  31. # - Run tests as
  32. # EMACS_TEST_VERBOSE= make test [OTHER_ARGUMENTS...]
  33. # or as
  34. # make test EMACS_TEST_VERBOSE= [OTHER_ARGUMENTS...]
  35. EMACS_TEST_VERBOSE ?= yes
  36. ifeq (,$(EMACS_TEST_VERBOSE))
  37. # Emacs-28 considers empty value as true, fixed in Emacs-29
  38. unexport EMACS_TEST_VERBOSE
  39. endif
  40. # add options before standard load-path
  41. BTEST_PRE =
  42. # add options after standard load path
  43. BTEST_POST =
  44. # -L <path-to>/ert # needed for Emacs23, Emacs24 has ert built in
  45. # -L <path-to>/ess # needed for running R tests
  46. # -L <path-to>/htmlize # need at least version 1.34 for source code formatting
  47. BTEST_OB_LANGUAGES = awk C fortran maxima lilypond octave perl python
  48. # R # requires ESS to be installed and configured
  49. # ruby # requires inf-ruby to be installed and configured
  50. # extra packages to require for testing
  51. BTEST_EXTRA =
  52. # ess-site # load ESS for R tests
  53. ##->8-------------------------------------------------------------------
  54. ## YOU MAY NEED TO ADAPT THESE DEFINITIONS
  55. ##----------------------------------------------------------------------
  56. # How to run tests
  57. req-ob-lang = --eval '(require '"'"'ob-$(ob-lang))'
  58. lst-ob-lang = ($(ob-lang) . t)
  59. req-extra = --eval '(require '"'"'$(req))'
  60. BTEST_RE ?= \\(org\\|ob\\)
  61. BTEST_LOAD = \
  62. --eval '(add-to-list '"'"'load-path (concat default-directory "lisp"))' \
  63. --eval '(add-to-list '"'"'load-path (concat default-directory "testing"))'
  64. BTEST_INIT = $(BTEST_PRE) $(BTEST_LOAD) $(BTEST_POST)
  65. BTEST = $(BATCH) $(BTEST_INIT) \
  66. -l org-batch-test-init \
  67. --eval '(setq \
  68. org-batch-test t \
  69. org-babel-load-languages \
  70. (quote ($(foreach ob-lang,\
  71. $(BTEST_OB_LANGUAGES) emacs-lisp shell org,\
  72. $(lst-ob-lang)))) \
  73. org-test-select-re "$(BTEST_RE)" \
  74. )' \
  75. -l org-loaddefs.el \
  76. -l cl -l testing/org-test.el \
  77. -l ert -l org -l ox -l ol \
  78. $(foreach req,$(BTEST_EXTRA),$(req-extra)) \
  79. --eval '(org-test-run-batch-tests org-test-select-re)'
  80. # Running a plain emacs with no config and this Org mode loaded. This
  81. # should be useful for manual testing and verification of problems.
  82. NOBATCH = $(EMACSQ) $(BTEST_INIT) -l org -f org-version
  83. # start Emacs with no user and site configuration
  84. # EMACSQ = -vanilla # XEmacs
  85. EMACSQ = $(EMACS) -Q
  86. # Using emacs in batch mode.
  87. BATCH = $(EMACSQ) -batch \
  88. --eval '(setq vc-handled-backends nil org-startup-folded nil org-element-cache-persistent nil)'
  89. # Emacs must be started in toplevel directory
  90. BATCHO = $(BATCH) \
  91. --eval '(add-to-list '"'"'load-path "./lisp")'
  92. # How to generate local.mk
  93. MAKE_LOCAL_MK = $(BATCHO) \
  94. --eval '(load "org-compat.el")' \
  95. --eval '(load "../mk/org-fixup.el")' \
  96. --eval '(org-make-local-mk)'
  97. # Emacs must be started in lisp directory
  98. BATCHL = $(BATCH) \
  99. --eval '(add-to-list '"'"'load-path ".")'
  100. # How to generate org-loaddefs.el
  101. MAKE_ORG_INSTALL = $(BATCHL) \
  102. --eval '(load "org-compat.el")' \
  103. --eval '(load "../mk/org-fixup.el")' \
  104. --eval '(org-make-org-loaddefs)'
  105. # How to generate org-version.el
  106. MAKE_ORG_VERSION = $(BATCHL) \
  107. --eval '(load "org-compat.el")' \
  108. --eval '(load "../mk/org-fixup.el")' \
  109. --eval '(org-make-org-version "$(ORGVERSION)" "$(GITVERSION)")'
  110. # How to byte-compile the whole source directory
  111. ELCDIR = $(BATCHL) \
  112. --eval '(batch-byte-recompile-directory 0)'
  113. # How to byte-compile a single file
  114. ELC = $(BATCHL) \
  115. --eval '(batch-byte-compile)'
  116. # How to make a pdf file from a texinfo file
  117. TEXI2PDF = texi2pdf --batch --clean --expand
  118. # How to make a pdf file from a tex file
  119. PDFTEX = pdftex
  120. # How to create directories with leading path components
  121. # MKDIR = mkdir -m 755 -p # try this if you have no install
  122. MKDIR = install -m 755 -d
  123. # How to create the info files from the texinfo file
  124. MAKEINFO = makeinfo
  125. # How to create the HTML file
  126. TEXI2HTML = makeinfo --html --number-sections --css-ref "https://www.gnu.org/software/emacs/manual.css"
  127. # How to find files
  128. FIND = find
  129. # How to remove files
  130. RM = rm -f
  131. # How to remove files recursively
  132. RMR = rm -fr
  133. # How to change file permissions
  134. # currently only needed for git-annex due to its "lockdown" feature
  135. CHMOD = chmod
  136. # How to copy the lisp files and elc files to their destination.
  137. # CP = cp -p # try this if you have no install
  138. CP = install -m 644 -p
  139. # How to obtain administrative privileges
  140. # leave blank if you don't need this
  141. # SUDO =
  142. SUDO = sudo
  143. # Name of the program to install info files
  144. # INSTALL_INFO = ginstall-info # Debian: avoid harmless warning message
  145. INSTALL_INFO = install-info
  146. # target method for 'compile'
  147. ORGCM = dirall
  148. # ORGCM = dirall # 1x slowdown compared to default compilation method
  149. # ORGCM = single # 4x one Emacs process per compilation
  150. # ORGCM = source # 5x ditto, but remove compiled file immediately
  151. # ORGCM = slint1 # 3x possibly elicit more warnings
  152. # ORGCM = slint2 # 7x possibly elicit even more warnings