default.mk 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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 if you want to include some (or all) files from contrib/lisp
  19. # just the filename please (no path prefix, no .el suffix), maybe with globbing
  20. #ORG_ADD_CONTRIB = ox-* # e.g. the contributed exporter
  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. # add options before standard load-path
  27. BTEST_PRE =
  28. # add options after standard load path
  29. BTEST_POST =
  30. # -L <path-to>/ert # needed for Emacs23, Emacs24 has ert built in
  31. # -L <path-to>/ess # needed for running R tests
  32. # -L <path-to>/htmlize # need at least version 1.34 for source code formatting
  33. BTEST_OB_LANGUAGES = awk C fortran maxima lilypond octave python sh perl
  34. # R # requires ESS to be installed and configured
  35. # extra packages to require for testing
  36. BTEST_EXTRA =
  37. # ess-site # load ESS for R tests
  38. ##->8-------------------------------------------------------------------
  39. ## YOU MAY NEED TO ADAPT THESE DEFINITIONS
  40. ##----------------------------------------------------------------------
  41. # How to run tests
  42. req-ob-lang = --eval '(require '"'"'ob-$(ob-lang))'
  43. req-extra = --eval '(require '"'"'$(req))'
  44. BTEST = $(BATCH) \
  45. $(BTEST_PRE) \
  46. --eval '(add-to-list '"'"'load-path "./lisp")' \
  47. --eval '(add-to-list '"'"'load-path "./testing")' \
  48. $(BTEST_POST) \
  49. -l org-loaddefs.el \
  50. -l testing/org-test.el \
  51. $(foreach ob-lang,$(BTEST_OB_LANGUAGES),$(req-ob-lang)) \
  52. $(foreach req,$(BTEST_EXTRA),$(req-extra)) \
  53. --eval '(setq org-confirm-babel-evaluate nil)' \
  54. -f org-test-run-batch-tests
  55. # Using emacs in batch mode.
  56. # BATCH = $(EMACS) -batch -vanilla # XEmacs
  57. BATCH = $(EMACS) -batch -Q \
  58. --eval '(setq vc-handled-backends nil)'
  59. # Emacs must be started in toplevel directory
  60. BATCHO = $(BATCH) \
  61. --eval '(add-to-list '"'"'load-path "./lisp")'
  62. # How to generate local.mk
  63. MAKE_LOCAL_MK = $(BATCHO) \
  64. --eval '(load "org-compat.el")' \
  65. --eval '(load "../mk/org-fixup.el")' \
  66. --eval '(org-make-local-mk)'
  67. # Emacs must be started in lisp directory
  68. BATCHL = $(BATCH) \
  69. --eval '(add-to-list '"'"'load-path ".")'
  70. # How to generate org-loaddefs.el
  71. MAKE_ORG_INSTALL = $(BATCHL) \
  72. --eval '(load "org-compat.el")' \
  73. --eval '(load "../mk/org-fixup.el")' \
  74. --eval '(org-make-org-loaddefs)'
  75. # How to generate org-version.el
  76. MAKE_ORG_VERSION = $(BATCHL) \
  77. --eval '(load "org-compat.el")' \
  78. --eval '(load "../mk/org-fixup.el")' \
  79. --eval '(org-make-org-version "$(ORGVERSION)" "$(GITVERSION)" "'$(datadir)'")'
  80. # How to byte-compile the whole source directory
  81. ELCDIR = $(BATCHL) \
  82. --eval '(batch-byte-recompile-directory 0)'
  83. # How to byte-compile a single file
  84. ELC = $(BATCHL) \
  85. --eval '(batch-byte-compile)'
  86. # How to make a pdf file from a texinfo file
  87. TEXI2PDF = texi2pdf --batch --clean
  88. # How to make a pdf file from a tex file
  89. PDFTEX = pdftex
  90. # How to create directories with leading path components
  91. # MKDIR = mkdir -m 755 -p # try this if you have no install
  92. MKDIR = install -m 755 -d
  93. # How to create the info files from the texinfo file
  94. MAKEINFO = makeinfo
  95. # How to create the HTML file
  96. TEXI2HTML = makeinfo --html --number-sections
  97. # How to find files
  98. FIND = find
  99. # How to remove files
  100. RM = rm -f
  101. # How to remove files recursively
  102. RMR = rm -fr
  103. # How to copy the lisp files and elc files to their destination.
  104. # CP = cp -p # try this if you have no install
  105. CP = install -m 644 -p
  106. # How to obtain administrative privileges
  107. # leave blank if you don't need this
  108. # SUDO =
  109. SUDO = sudo
  110. # Name of the program to install info files
  111. # INSTALL_INFO = ginstall-info # Debian: avoid harmless warning message
  112. INSTALL_INFO = install-info
  113. # target method for 'compile'
  114. ORGCM = dirall
  115. # ORGCM = dirall # 1x slowdown compared to default compilation method
  116. # ORGCM = single # 4x one Emacs process per compilation
  117. # ORGCM = source # 5x ditto, but remove compiled file immediately
  118. # ORGCM = slint1 # 3x possibly elicit more warnings
  119. # ORGCM = slint2 # 7x possibly elicit even more warnings