Makefile 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449
  1. # Makefile - for the org-mode distribution
  2. #
  3. # Maintainer: Carsten Dominik <dominik@science.uva.nl>
  4. # Version: VERSIONTAG
  5. #
  6. # To install org-mode, edit the Makefile, type `make', then `make install'.
  7. # To create the PDF and HTML documentation files, type `make doc'.
  8. ##----------------------------------------------------------------------
  9. ## YOU MUST EDIT THE FOLLOWING LINES
  10. ##----------------------------------------------------------------------
  11. # Name of your emacs binary
  12. EMACS=emacs
  13. # Where local software is found
  14. prefix=/usr/local
  15. # Where local lisp files go.
  16. lispdir = $(prefix)/share/emacs/site-lisp
  17. # Where info files go.
  18. infodir = $(prefix)/share/info
  19. ##----------------------------------------------------------------------
  20. ## YOU MAY NEED TO EDIT THESE
  21. ##----------------------------------------------------------------------
  22. # Using emacs in batch mode.
  23. BATCH=$(EMACS) -batch -q -no-site-file -eval \
  24. "(setq load-path (cons (expand-file-name \"./lisp/\") (cons \"$(lispdir)\" load-path)))"
  25. # Specify the byte-compiler for compiling org-mode files
  26. ELC= $(BATCH) -f batch-byte-compile
  27. # How to make a pdf file from a texinfo file
  28. TEXI2PDF = texi2pdf
  29. # How to create directories
  30. MKDIR = mkdir -p
  31. # How to create the info files from the texinfo file
  32. MAKEINFO = makeinfo
  33. # How to create the HTML file
  34. TEXI2HTML = makeinfo --html --number-sections
  35. TEXI2HTMLNOPSLIT = makeinfo --html --no-split --number-sections
  36. # How to copy the lisp files and elc files to their distination.
  37. CP = cp -p
  38. # Name of the program to install info files
  39. INSTALL_INFO=install-info
  40. ##----------------------------------------------------------------------
  41. ## BELOW THIS LINE ON YOUR OWN RISK!
  42. ##----------------------------------------------------------------------
  43. # The following variables need to be defined by the maintainer
  44. LISPF = org.el \
  45. org-agenda.el \
  46. org-ascii.el \
  47. org-attach.el \
  48. org-archive.el \
  49. org-bbdb.el \
  50. org-beamer.el \
  51. org-bibtex.el \
  52. org-capture.el \
  53. org-clock.el \
  54. org-colview.el \
  55. org-colview-xemacs.el \
  56. org-compat.el \
  57. org-crypt.el \
  58. org-ctags.el \
  59. org-datetree.el \
  60. org-docview.el \
  61. org-entities.el \
  62. org-exp.el \
  63. org-exp-blocks.el \
  64. org-docbook.el \
  65. org-faces.el \
  66. org-feed.el \
  67. org-footnote.el \
  68. org-freemind.el \
  69. org-gnus.el \
  70. org-habit.el \
  71. org-html.el \
  72. org-icalendar.el \
  73. org-id.el \
  74. org-indent.el \
  75. org-info.el \
  76. org-inlinetask.el \
  77. org-jsinfo.el \
  78. org-irc.el \
  79. org-latex.el \
  80. org-list.el \
  81. org-mac-message.el \
  82. org-macs.el \
  83. org-mew.el \
  84. org-mhe.el \
  85. org-mks.el \
  86. org-mobile.el \
  87. org-mouse.el \
  88. org-publish.el \
  89. org-plot.el \
  90. org-protocol.el \
  91. org-remember.el \
  92. org-rmail.el \
  93. org-src.el \
  94. org-table.el \
  95. org-taskjuggler.el \
  96. org-timer.el \
  97. org-vm.el \
  98. org-w3m.el \
  99. org-wl.el \
  100. org-xoxo.el \
  101. ob.el \
  102. ob-table.el \
  103. ob-lob.el \
  104. ob-ref.el \
  105. ob-exp.el \
  106. ob-tangle.el \
  107. ob-comint.el \
  108. ob-eval.el \
  109. ob-keys.el \
  110. ob-C.el \
  111. ob-ditaa.el \
  112. ob-haskell.el \
  113. ob-perl.el \
  114. ob-sh.el \
  115. ob-R.el \
  116. ob-dot.el \
  117. ob-mscgen.el \
  118. ob-latex.el \
  119. ob-ledger.el \
  120. ob-python.el \
  121. ob-sql.el \
  122. ob-asymptote.el \
  123. ob-emacs-lisp.el \
  124. ob-matlab.el \
  125. ob-ruby.el \
  126. ob-sqlite.el \
  127. ob-clojure.el \
  128. ob-ocaml.el \
  129. ob-sass.el \
  130. ob-css.el \
  131. ob-gnuplot.el \
  132. ob-octave.el \
  133. ob-screen.el \
  134. ob-plantuml.el \
  135. ob-org.el
  136. LISPFILES0 = $(LISPF:%=lisp/%)
  137. LISPFILES = $(LISPFILES0) lisp/org-install.el
  138. ELCFILES0 = $(LISPFILES0:.el=.elc)
  139. ELCFILES = $(LISPFILES:.el=.elc)
  140. DOCFILES = doc/org.texi doc/org.pdf doc/org doc/dir \
  141. doc/pdflayout.sty doc/.nosearch \
  142. doc/orgguide.texi doc/orgguide.pdf
  143. CARDFILES = doc/orgcard.tex doc/orgcard.pdf doc/orgcard_letter.pdf
  144. TEXIFILES = doc/org.texi
  145. INFOFILES = doc/org
  146. .SUFFIXES: .el .elc .texi
  147. SHELL = /bin/sh
  148. # Additional distribution files
  149. DISTFILES_extra= Makefile request-assign-future.txt contrib
  150. default: $(ELCFILES) $(ELCBFILES)
  151. all: $(ELCFILES) $(ELCBFILES) $(INFOFILES)
  152. up2: update
  153. sudo ${MAKE} install
  154. update:
  155. git pull
  156. ${MAKE} clean
  157. ${MAKE} all
  158. compile: $(ELCFILES0) $(ELCBFILES)
  159. install: install-lisp
  160. doc: doc/org.html doc/org.pdf doc/orgcard.pdf doc/orgcard_letter.pdf doc/orgguide.pdf
  161. p:
  162. ${MAKE} pdf && open doc/org.pdf
  163. g:
  164. ${MAKE} pdf && open doc/orgguide.pdf
  165. install-lisp: $(LISPFILES) $(ELCFILES)
  166. if [ ! -d $(lispdir) ]; then $(MKDIR) $(lispdir); else true; fi ;
  167. $(CP) $(LISPFILES) $(lispdir)
  168. $(CP) $(ELCFILES) $(lispdir)
  169. install-info: $(INFOFILES)
  170. if [ ! -d $(infodir) ]; then $(MKDIR) $(infodir); else true; fi ;
  171. $(CP) $(INFOFILES) $(infodir)
  172. $(INSTALL_INFO) --info-file=$(INFOFILES) --info-dir=$(infodir)
  173. install-info-debian: $(INFOFILES)
  174. $(INSTALL_INFO) --infodir=$(infodir) $(INFOFILES)
  175. autoloads: lisp/org-install.el
  176. lisp/org-install.el: $(LISPFILES0) Makefile
  177. $(BATCH) --eval "(require 'autoload)" \
  178. --eval '(find-file "org-install.el")' \
  179. --eval '(erase-buffer)' \
  180. --eval '(mapc (lambda (x) (generate-file-autoloads (symbol-name x))) (quote ($(LISPFILES0))))' \
  181. --eval '(insert "\n(provide (quote org-install))\n")' \
  182. --eval '(save-buffer)'
  183. mv org-install.el lisp
  184. doc/org: doc/org.texi
  185. (cd doc; $(MAKEINFO) --no-split org.texi -o org)
  186. doc/org.pdf: doc/org.texi
  187. (cd doc; $(TEXI2PDF) org.texi)
  188. doc/orgguide.pdf: doc/orgguide.texi
  189. (cd doc; $(TEXI2PDF) orgguide.texi)
  190. doc/org.html: doc/org.texi
  191. (cd doc; $(TEXI2HTML) --no-split -o org.html org.texi)
  192. UTILITIES/manfull.pl doc/org.html
  193. doc/orgcard.pdf: doc/orgcard.tex
  194. (cd doc; pdftex orgcard.tex)
  195. doc/orgcard.txt: doc/orgcard.tex
  196. (cd doc; perl ../UTILITIES/orgcard2txt.pl orgcard.tex > orgcard.txt)
  197. doc/orgcard_letter.tex: doc/orgcard.tex
  198. perl -pe 's/\\pdflayout=\(0l\)/\\pdflayout=(1l)/' \
  199. doc/orgcard.tex > doc/orgcard_letter.tex
  200. doc/orgcard_letter.pdf: doc/orgcard_letter.tex
  201. (cd doc; pdftex orgcard_letter.tex)
  202. # Below here are special targets for maintenance only
  203. updateweb:
  204. ssh cdominik@orgmode.org 'pull-worg-org.sh && publish-worg-org.sh'
  205. html: doc/org.html
  206. html_manual: doc/org.texi
  207. rm -rf doc/manual
  208. mkdir doc/manual
  209. $(TEXI2HTML) -o doc/manual doc/org.texi
  210. UTILITIES/mansplit.pl doc/manual/*.html
  211. html_guide: doc/orgguide.texi
  212. rm -rf doc/guide
  213. mkdir doc/guide
  214. $(TEXI2HTML) -o doc/guide doc/orgguide.texi
  215. UTILITIES/guidesplit.pl doc/guide/*.html
  216. info: doc/org
  217. pdf: doc/org.pdf doc/orgguide.pdf
  218. card: doc/orgcard.pdf doc/orgcard_letter.pdf doc/orgcard.txt
  219. testrelease:
  220. git checkout -b testrelease maint
  221. git merge -s recursive -X theirs master
  222. UTILITIES/set-version.pl testing
  223. git commit -a -m "Release testing"
  224. make distfile TAG=testversion
  225. make cleanrel
  226. rm -rf org-testversion*
  227. git reset --hard
  228. git checkout master
  229. git branch -D testrelease
  230. release:
  231. git checkout maint
  232. git merge -s recursive -X theirs master
  233. UTILITIES/set-version.pl $(TAG)
  234. git commit -a -m "Release $(TAG)"
  235. make relup TAG=$(TAG)
  236. make cleanrel
  237. rm -rf org-$(TAG)
  238. rm org-$(TAG)*.zip
  239. rm org-$(TAG)*.tar.gz
  240. make pushreleasetag TAG=$(TAG)
  241. git push origin maint
  242. git checkout master
  243. git merge -s ours maint
  244. UTILITIES/set-version.pl -o $(TAG)
  245. git commit -a -m "Update website to show $(TAG) as current release"
  246. git push
  247. make updateweb
  248. relup:
  249. ${MAKE} makerelease
  250. ${MAKE} upload_release
  251. ${MAKE} upload_manual
  252. distfile:
  253. @if [ "X$(TAG)" = "X" ]; then echo "*** No tag ***"; exit 1; fi
  254. touch doc/org.texi doc/orgcard.tex # force update
  255. ${MAKE} cleancontrib
  256. ${MAKE} info
  257. ${MAKE} doc
  258. ${MAKE} lisp/org-install.el
  259. rm -rf org-$(TAG) org-$(TAG).zip
  260. $(MKDIR) org-$(TAG)
  261. $(MKDIR) org-$(TAG)/doc
  262. $(MKDIR) org-$(TAG)/lisp
  263. cp -r $(LISPFILES) org-$(TAG)/lisp
  264. cp -r $(DOCFILES) $(CARDFILES) org-$(TAG)/doc
  265. cp -r $(DISTFILES_extra) org-$(TAG)/
  266. cp -r README_DIST org-$(TAG)/README
  267. cp -r ORGWEBPAGE/Changes.org org-$(TAG)/
  268. zip -r org-$(TAG).zip org-$(TAG)
  269. gtar zcvf org-$(TAG).tar.gz org-$(TAG)
  270. makerelease:
  271. @if [ "X$(TAG)" = "X" ]; then echo "*** No tag ***"; exit 1; fi
  272. ${MAKE} distfile
  273. ${MAKE} doc
  274. UTILITIES/gplmanual.pl
  275. ${MAKE} html_manual
  276. ${MAKE} html_guide
  277. rm -rf RELEASEDIR
  278. $(MKDIR) RELEASEDIR
  279. cp org-$(TAG).zip org-$(TAG).tar.gz RELEASEDIR
  280. cp doc/org.pdf doc/orgcard.pdf doc/org.texi doc/org.html RELEASEDIR
  281. cp doc/org_dual_license.texi RELEASEDIR
  282. cp doc/orgguide.pdf doc/orgcard.txt RELEASEDIR
  283. cp RELEASEDIR/org-$(TAG).zip RELEASEDIR/org.zip
  284. cp RELEASEDIR/org-$(TAG).tar.gz RELEASEDIR/org.tar.gz
  285. upload_release:
  286. rsync -avuz RELEASEDIR/ cdominik@orgmode.org:orgmode.org/
  287. upload_manual:
  288. rsync -avuz --delete doc/manual/ cdominik@orgmode.org:orgmode.org/manual/
  289. rsync -avuz --delete doc/guide/ cdominik@orgmode.org:orgmode.org/guide/
  290. cleanall:
  291. ${MAKE} clean
  292. rm -f lisp/org-install.el
  293. clean:
  294. ${MAKE} cleanelc
  295. ${MAKE} cleandoc
  296. ${MAKE} cleanrel
  297. rm -f *~ */*~ */*/*~
  298. cleancontrib:
  299. find contrib -name \*~ -exec rm {} \;
  300. cleanelc:
  301. rm -f $(ELCFILES)
  302. cleandoc:
  303. (cd doc; rm -f org.pdf org org.html orgcard.pdf)
  304. (cd doc; rm -f *.aux *.cp *.cps *.dvi *.fn *.fns *.ky *.kys *.pg *.pgs)
  305. (cd doc; rm -f *.toc *.tp *.tps *.vr *.vrs *.log *.html *.ps)
  306. (cd doc; rm -f orgcard_letter.tex orgcard_letter.pdf)
  307. (cd doc; rm -rf manual)
  308. cleanrel:
  309. rm -rf RELEASEDIR
  310. rm -rf org-7.*
  311. rm -rf org-7*zip org-7*tar.gz
  312. .el.elc:
  313. $(ELC) $<
  314. push:
  315. git-push git+ssh://repo.or.cz/srv/git/org-mode.git master
  316. pushtag:
  317. git-tag -m "Adding tag" -a $(TAG)
  318. git-push git+ssh://repo.or.cz/srv/git/org-mode.git $(TAG)
  319. pushreleasetag:
  320. git-tag -m "Adding release tag" -a release_$(TAG)
  321. git-push git+ssh://repo.or.cz/srv/git/org-mode.git release_$(TAG)
  322. # Dependencies
  323. lisp/org.elc: lisp/org-macs.el lisp/org-compat.el lisp/org-faces.el
  324. lisp/org-agenda.elc: lisp/org.el
  325. lisp/org-ascii.elc: lisp/org-exp.el
  326. lisp/org-attach.elc: lisp/org.el lisp/org-id.el
  327. lisp/org-archive.elc: lisp/org.el
  328. lisp/org-bbdb.elc: lisp/org.el
  329. lisp/org-beamer.elc: lisp/org.el
  330. lisp/org-bibtex.elc: lisp/org.el
  331. lisp/org-capture.elc: lisp/org.el lisp/org-mks.el
  332. lisp/org-clock.elc: lisp/org.el
  333. lisp/org-colview.elc: lisp/org.el
  334. lisp/org-colview-xemacs.elc: lisp/org.el
  335. lisp/org-compat.elc: lisp/org-macs.el
  336. lisp/org-crypt.elc: lisp/org-crypt.el lisp/org.el
  337. lisp/org-ctags.elc: lisp/org.el
  338. lisp/org-datetree.elc: lisp/org.el
  339. lisp/org-docview.elc: lisp/org.el
  340. lisp/org-entities.elc:
  341. lisp/org-exp.elc: lisp/org.el lisp/org-agenda.el
  342. lisp/org-exp-blocks.elc: lisp/org.el
  343. lisp/org-latex.elc: lisp/org.el lisp/org-exp.el lisp/org-beamer.el
  344. lisp/org-docbook.elc: lisp/org.el lisp/org-exp.el
  345. lisp/org-faces.elc: lisp/org-macs.el lisp/org-compat.el
  346. lisp/org-feed.elc: lisp/org.el
  347. lisp/org-footnotes.elc: lisp/org-macs.el lisp/org-compat.el
  348. lisp/org-freemind.elc: lisp/org.el
  349. lisp/org-gnus.elc: lisp/org.el
  350. lisp/org-html.elc: lisp/org-exp.el
  351. lisp/org-habit.elc: lisp/org.el lisp/org-agenda.el
  352. lisp/org-icalendar.elc: lisp/org-exp.el
  353. lisp/org-id.elc: lisp/org.el
  354. lisp/org-indent.elc: lisp/org.el lisp/org-macs.el lisp/org-compat.el
  355. lisp/org-info.elc: lisp/org.el
  356. lisp/org-inlinetask.elc:
  357. lisp/org-irc.elc: lisp/org.el
  358. lisp/org-jsinfo.elc: lisp/org.el lisp/org-exp.el
  359. lisp/org-list.elc: lisp/org-macs.el lisp/org-compat.el
  360. lisp/org-mac-message.elc: lisp/org.el
  361. lisp/org-macs.elc:
  362. lisp/org-mew.elc: lisp/org.el
  363. lisp/org-mhe.elc: lisp/org.el
  364. lisp/org-mks.elc:
  365. lisp/org-mobile.elc: lisp/org.el
  366. lisp/org-mouse.elc: lisp/org.el
  367. lisp/org-plot.elc: lisp/org.el lisp/org-exp.el lisp/org-table.el
  368. lisp/org-publish.elc:
  369. lisp/org-protocol.elc: lisp/org.el
  370. lisp/org-remember.elc: lisp/org.el
  371. lisp/org-rmail.elc: lisp/org.el
  372. lisp/org-src.elc: lisp/org-macs.el lisp/org-compat.el
  373. lisp/org-table.elc: lisp/org.el
  374. lisp/org-taskjuggler.elc: lisp/org.el lisp/org-exp.el
  375. lisp/org-timer.elc: lisp/org.el
  376. lisp/org-vm.elc: lisp/org.el
  377. lisp/org-w3m.elc: lisp/org.el
  378. lisp/org-wl.elc: lisp/org.el
  379. lisp/org-xoxo.elc: lisp/org-exp.el