Makefile 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456
  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. LISPFILES0 = $(LISPF:%=lisp/%)
  135. LISPFILES = $(LISPFILES0) lisp/org-install.el
  136. ELCFILES0 = $(LISPFILES0:.el=.elc)
  137. ELCFILES = $(LISPFILES:.el=.elc)
  138. DOCFILES = doc/org.texi doc/org.pdf doc/org doc/dir \
  139. doc/pdflayout.sty doc/.nosearch \
  140. doc/orgguide.texi doc/orgguide.pdf
  141. CARDFILES = doc/orgcard.tex doc/orgcard.pdf doc/orgcard_letter.pdf
  142. TEXIFILES = doc/org.texi
  143. INFOFILES = doc/org
  144. .SUFFIXES: .el .elc .texi
  145. SHELL = /bin/sh
  146. # Additional distribution files
  147. DISTFILES_extra= Makefile request-assign-future.txt contrib
  148. DISTFILES_xemacs= xemacs/noutline.el xemacs/ps-print-invisible.el xemacs/README
  149. default: $(ELCFILES) $(ELCBFILES)
  150. all: $(ELCFILES) $(ELCBFILES) $(INFOFILES)
  151. up2: update
  152. sudo ${MAKE} install
  153. update:
  154. git pull
  155. ${MAKE} clean
  156. ${MAKE} all
  157. compile: $(ELCFILES0) $(ELCBFILES)
  158. install: install-lisp
  159. doc: doc/org.html doc/org.pdf doc/orgcard.pdf doc/orgcard_letter.pdf doc/orgguide.pdf
  160. p:
  161. ${MAKE} pdf && open doc/org.pdf
  162. g:
  163. ${MAKE} pdf && open doc/orgguide.pdf
  164. install-lisp: $(LISPFILES) $(ELCFILES)
  165. if [ ! -d $(lispdir) ]; then $(MKDIR) $(lispdir); else true; fi ;
  166. $(CP) $(LISPFILES) $(lispdir)
  167. $(CP) $(ELCFILES) $(lispdir)
  168. install-info: $(INFOFILES)
  169. if [ ! -d $(infodir) ]; then $(MKDIR) $(infodir); else true; fi ;
  170. $(CP) $(INFOFILES) $(infodir)
  171. $(INSTALL_INFO) --info-file=$(INFOFILES) --info-dir=$(infodir)
  172. install-info-debian: $(INFOFILES)
  173. $(INSTALL_INFO) --infodir=$(infodir) $(INFOFILES)
  174. install-noutline: xemacs/noutline.elc
  175. if [ ! -d $(lispdir) ]; then $(MKDIR) $(lispdir); else true; fi ;
  176. $(CP) xemacs/noutline.el xemacs/noutline.elc $(lispdir)
  177. autoloads: lisp/org-install.el
  178. lisp/org-install.el: $(LISPFILES0) Makefile
  179. $(BATCH) --eval "(require 'autoload)" \
  180. --eval '(find-file "org-install.el")' \
  181. --eval '(erase-buffer)' \
  182. --eval '(mapc (lambda (x) (generate-file-autoloads (symbol-name x))) (quote ($(LISPFILES0))))' \
  183. --eval '(insert "\n(provide (quote org-install))\n")' \
  184. --eval '(save-buffer)'
  185. mv org-install.el lisp
  186. xemacs/noutline.elc: xemacs/noutline.el
  187. doc/org: doc/org.texi
  188. (cd doc; $(MAKEINFO) --no-split org.texi -o org)
  189. doc/org.pdf: doc/org.texi
  190. (cd doc; $(TEXI2PDF) org.texi)
  191. doc/orgguide.pdf: doc/orgguide.texi
  192. (cd doc; $(TEXI2PDF) orgguide.texi)
  193. doc/org.html: doc/org.texi
  194. (cd doc; $(TEXI2HTML) --no-split -o org.html org.texi)
  195. UTILITIES/manfull.pl doc/org.html
  196. doc/orgcard.pdf: doc/orgcard.tex
  197. (cd doc; pdftex orgcard.tex)
  198. doc/orgcard.txt: doc/orgcard.tex
  199. (cd doc; perl ../UTILITIES/orgcard2txt.pl orgcard.tex > orgcard.txt)
  200. doc/orgcard_letter.tex: doc/orgcard.tex
  201. perl -pe 's/\\pdflayout=\(0l\)/\\pdflayout=(1l)/' \
  202. doc/orgcard.tex > doc/orgcard_letter.tex
  203. doc/orgcard_letter.pdf: doc/orgcard_letter.tex
  204. (cd doc; pdftex orgcard_letter.tex)
  205. # Below here are special targets for maintenance only
  206. updateweb:
  207. ssh cdominik@orgmode.org 'pull-worg-org.sh && publish-worg-org.sh'
  208. html: doc/org.html
  209. html_manual: doc/org.texi
  210. rm -rf doc/manual
  211. mkdir doc/manual
  212. $(TEXI2HTML) -o doc/manual doc/org.texi
  213. UTILITIES/mansplit.pl doc/manual/*.html
  214. html_guide: doc/orgguide.texi
  215. rm -rf doc/guide
  216. mkdir doc/guide
  217. $(TEXI2HTML) -o doc/guide doc/orgguide.texi
  218. UTILITIES/guidesplit.pl doc/guide/*.html
  219. info: doc/org
  220. pdf: doc/org.pdf doc/orgguide.pdf
  221. card: doc/orgcard.pdf doc/orgcard_letter.pdf doc/orgcard.txt
  222. testrelease:
  223. git checkout -b testrelease maint
  224. git merge -s recursive -X theirs master
  225. UTILITIES/set-version.pl testing
  226. git commit -a -m "Release testing"
  227. make distfile TAG=testversion
  228. make cleanrel
  229. rm -rf org-testversion*
  230. git reset --hard
  231. git checkout master
  232. git branch -D testrelease
  233. release:
  234. git checkout maint
  235. git merge -s recursive -X theirs master
  236. UTILITIES/set-version.pl $(TAG)
  237. git commit -a -m "Release $(TAG)"
  238. make relup TAG=$(TAG)
  239. make cleanrel
  240. rm -rf org-$(TAG)
  241. rm org-$(TAG)*.zip
  242. rm org-$(TAG)*.tar.gz
  243. make pushreleasetag TAG=$(TAG)
  244. git push origin maint
  245. git checkout master
  246. git merge -s ours maint
  247. UTILITIES/set-version.pl -o $(TAG)
  248. git commit -a -m "Update website to show $(TAG) as current release"
  249. git push
  250. make updateweb
  251. relup:
  252. ${MAKE} makerelease
  253. ${MAKE} upload_release
  254. ${MAKE} upload_manual
  255. distfile:
  256. @if [ "X$(TAG)" = "X" ]; then echo "*** No tag ***"; exit 1; fi
  257. touch doc/org.texi doc/orgcard.tex # force update
  258. ${MAKE} cleancontrib
  259. ${MAKE} info
  260. ${MAKE} doc
  261. ${MAKE} lisp/org-install.el
  262. rm -rf org-$(TAG) org-$(TAG).zip
  263. $(MKDIR) org-$(TAG)
  264. $(MKDIR) org-$(TAG)/xemacs
  265. $(MKDIR) org-$(TAG)/doc
  266. $(MKDIR) org-$(TAG)/lisp
  267. cp -r $(LISPFILES) org-$(TAG)/lisp
  268. cp -r $(DOCFILES) $(CARDFILES) org-$(TAG)/doc
  269. cp -r $(DISTFILES_extra) org-$(TAG)/
  270. cp -r README_DIST org-$(TAG)/README
  271. cp -r ORGWEBPAGE/Changes.org org-$(TAG)/
  272. cp -r $(DISTFILES_xemacs) org-$(TAG)/xemacs/
  273. zip -r org-$(TAG).zip org-$(TAG)
  274. gtar zcvf org-$(TAG).tar.gz org-$(TAG)
  275. makerelease:
  276. @if [ "X$(TAG)" = "X" ]; then echo "*** No tag ***"; exit 1; fi
  277. ${MAKE} distfile
  278. ${MAKE} doc
  279. UTILITIES/gplmanual.pl
  280. ${MAKE} html_manual
  281. ${MAKE} html_guide
  282. rm -rf RELEASEDIR
  283. $(MKDIR) RELEASEDIR
  284. cp org-$(TAG).zip org-$(TAG).tar.gz RELEASEDIR
  285. cp doc/org.pdf doc/orgcard.pdf doc/org.texi doc/org.html RELEASEDIR
  286. cp doc/org_dual_license.texi RELEASEDIR
  287. cp doc/orgguide.pdf doc/orgcard.txt RELEASEDIR
  288. cp RELEASEDIR/org-$(TAG).zip RELEASEDIR/org.zip
  289. cp RELEASEDIR/org-$(TAG).tar.gz RELEASEDIR/org.tar.gz
  290. upload_release:
  291. rsync -avuz RELEASEDIR/ cdominik@orgmode.org:orgmode.org/
  292. upload_manual:
  293. rsync -avuz --delete doc/manual/ cdominik@orgmode.org:orgmode.org/manual/
  294. rsync -avuz --delete doc/guide/ cdominik@orgmode.org:orgmode.org/guide/
  295. cleanall:
  296. ${MAKE} clean
  297. rm -f lisp/org-install.el
  298. clean:
  299. ${MAKE} cleanelc
  300. ${MAKE} cleandoc
  301. ${MAKE} cleanrel
  302. rm -f *~ */*~ */*/*~
  303. cleancontrib:
  304. find contrib -name \*~ -exec rm {} \;
  305. cleanelc:
  306. rm -f $(ELCFILES)
  307. cleandoc:
  308. (cd doc; rm -f org.pdf org org.html orgcard.pdf)
  309. (cd doc; rm -f *.aux *.cp *.cps *.dvi *.fn *.fns *.ky *.kys *.pg *.pgs)
  310. (cd doc; rm -f *.toc *.tp *.tps *.vr *.vrs *.log *.html *.ps)
  311. (cd doc; rm -f orgcard_letter.tex orgcard_letter.pdf)
  312. (cd doc; rm -rf manual)
  313. cleanrel:
  314. rm -rf RELEASEDIR
  315. rm -rf org-7.*
  316. rm -rf org-7*zip org-7*tar.gz
  317. .el.elc:
  318. $(ELC) $<
  319. push:
  320. git-push git+ssh://repo.or.cz/srv/git/org-mode.git master
  321. pushtag:
  322. git-tag -m "Adding tag" -a $(TAG)
  323. git-push git+ssh://repo.or.cz/srv/git/org-mode.git $(TAG)
  324. pushreleasetag:
  325. git-tag -m "Adding release tag" -a release_$(TAG)
  326. git-push git+ssh://repo.or.cz/srv/git/org-mode.git release_$(TAG)
  327. # Dependencies
  328. lisp/org.elc: lisp/org-macs.el lisp/org-compat.el lisp/org-faces.el
  329. lisp/org-agenda.elc: lisp/org.el
  330. lisp/org-ascii.elc: lisp/org-exp.el
  331. lisp/org-attach.elc: lisp/org.el lisp/org-id.el
  332. lisp/org-archive.elc: lisp/org.el
  333. lisp/org-bbdb.elc: lisp/org.el
  334. lisp/org-beamer.elc: lisp/org.el
  335. lisp/org-bibtex.elc: lisp/org.el
  336. lisp/org-capture.elc: lisp/org.el lisp/org-mks.el
  337. lisp/org-clock.elc: lisp/org.el
  338. lisp/org-colview.elc: lisp/org.el
  339. lisp/org-colview-xemacs.elc: lisp/org.el
  340. lisp/org-compat.elc: lisp/org-macs.el
  341. lisp/org-crypt.elc: lisp/org-crypt.el lisp/org.el
  342. lisp/org-ctags.elc: lisp/org.el
  343. lisp/org-datetree.elc: lisp/org.el
  344. lisp/org-docview.elc: lisp/org.el
  345. lisp/org-entities.elc:
  346. lisp/org-exp.elc: lisp/org.el lisp/org-agenda.el
  347. lisp/org-exp-blocks.elc: lisp/org.el
  348. lisp/org-latex.elc: lisp/org.el lisp/org-exp.el lisp/org-beamer.el
  349. lisp/org-docbook.elc: lisp/org.el lisp/org-exp.el
  350. lisp/org-faces.elc: lisp/org-macs.el lisp/org-compat.el
  351. lisp/org-feed.elc: lisp/org.el
  352. lisp/org-footnotes.elc: lisp/org-macs.el lisp/org-compat.el
  353. lisp/org-freemind.elc: lisp/org.el
  354. lisp/org-gnus.elc: lisp/org.el
  355. lisp/org-html.elc: lisp/org-exp.el
  356. lisp/org-habit.elc: lisp/org.el lisp/org-agenda.el
  357. lisp/org-icalendar.elc: lisp/org-exp.el
  358. lisp/org-id.elc: lisp/org.el
  359. lisp/org-indent.elc: lisp/org.el lisp/org-macs.el lisp/org-compat.el
  360. lisp/org-info.elc: lisp/org.el
  361. lisp/org-inlinetask.elc:
  362. lisp/org-irc.elc: lisp/org.el
  363. lisp/org-jsinfo.elc: lisp/org.el lisp/org-exp.el
  364. lisp/org-list.elc: lisp/org-macs.el lisp/org-compat.el
  365. lisp/org-mac-message.elc: lisp/org.el
  366. lisp/org-macs.elc:
  367. lisp/org-mew.elc: lisp/org.el
  368. lisp/org-mhe.elc: lisp/org.el
  369. lisp/org-mks.elc:
  370. lisp/org-mobile.elc: lisp/org.el
  371. lisp/org-mouse.elc: lisp/org.el
  372. lisp/org-plot.elc: lisp/org.el lisp/org-exp.el lisp/org-table.el
  373. lisp/org-publish.elc:
  374. lisp/org-protocol.elc: lisp/org.el
  375. lisp/org-remember.elc: lisp/org.el
  376. lisp/org-rmail.elc: lisp/org.el
  377. lisp/org-src.elc: lisp/org-macs.el lisp/org-compat.el
  378. lisp/org-table.elc: lisp/org.el
  379. lisp/org-taskjuggler.elc: lisp/org.el lisp/org-exp.el
  380. lisp/org-timer.elc: lisp/org.el
  381. lisp/org-vm.elc: lisp/org.el
  382. lisp/org-w3m.elc: lisp/org.el
  383. lisp/org-wl.elc: lisp/org.el
  384. lisp/org-xoxo.elc: lisp/org-exp.el