Makefile 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379
  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. "(progn (add-to-list (quote load-path) \"$(lispdir)\") \
  25. (add-to-list (quote load-path) (expand-file-name \"./lisp/\")))"
  26. # Specify the byte-compiler for compiling org-mode files
  27. ELC= $(BATCH) -f batch-byte-compile
  28. # How to make a pdf file from a texinfo file
  29. TEXI2PDF = texi2pdf
  30. # How to create directories
  31. MKDIR = mkdir -p
  32. # How to create the info files from the texinfo file
  33. MAKEINFO = makeinfo
  34. # How to create the HTML file
  35. TEXI2HTML = makeinfo --html --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-bibtex.el \
  51. org-clock.el \
  52. org-colview.el \
  53. org-colview-xemacs.el \
  54. org-compat.el \
  55. org-crypt.el \
  56. org-exp.el \
  57. org-exp-blocks.el \
  58. org-docbook.el \
  59. org-faces.el \
  60. org-feed.el \
  61. org-footnote.el \
  62. org-gnus.el \
  63. org-html.el \
  64. org-icalendar.el \
  65. org-id.el \
  66. org-indent.el \
  67. org-info.el \
  68. org-inlinetask.el \
  69. org-jsinfo.el \
  70. org-irc.el \
  71. org-latex.el \
  72. org-list.el \
  73. org-mac-message.el \
  74. org-macs.el \
  75. org-mew.el \
  76. org-mhe.el \
  77. org-mobile.el \
  78. org-mouse.el \
  79. org-publish.el \
  80. org-plot.el \
  81. org-protocol.el \
  82. org-remember.el \
  83. org-rmail.el \
  84. org-src.el \
  85. org-table.el \
  86. org-timer.el \
  87. org-vm.el \
  88. org-w3m.el \
  89. org-wl.el \
  90. org-xoxo.el
  91. LISPFILES0 = $(LISPF:%=lisp/%)
  92. LISPFILES = $(LISPFILES0) lisp/org-install.el
  93. ELCFILES0 = $(LISPFILES0:.el=.elc)
  94. ELCFILES = $(LISPFILES:.el=.elc)
  95. DOCFILES = doc/org.texi doc/org.pdf doc/org doc/dir doc/.nosearch
  96. CARDFILES = doc/orgcard.tex doc/orgcard.pdf doc/orgcard_letter.pdf
  97. TEXIFILES = doc/org.texi
  98. INFOFILES = doc/org
  99. .SUFFIXES: .el .elc .texi
  100. SHELL = /bin/sh
  101. # Additional distribution files
  102. DISTFILES_extra= Makefile ChangeLog request-assign-future.txt contrib
  103. DISTFILES_xemacs= xemacs/noutline.el xemacs/ps-print-invisible.el xemacs/README
  104. default: $(ELCFILES)
  105. all: $(ELCFILES) $(INFOFILES)
  106. up2: update
  107. sudo ${MAKE} install
  108. update:
  109. git pull
  110. ${MAKE} clean
  111. ${MAKE} all
  112. compile: $(ELCFILES0)
  113. install: install-lisp
  114. doc: doc/org.html doc/org.pdf doc/orgcard.pdf doc/orgcard_letter.pdf
  115. p:
  116. ${MAKE} pdf && open doc/org.pdf
  117. c:
  118. ${MAKE} card && gv doc/orgcard.ps
  119. install-lisp: $(LISPFILES) $(ELCFILES)
  120. if [ ! -d $(lispdir) ]; then $(MKDIR) $(lispdir); else true; fi ;
  121. $(CP) $(LISPFILES) $(lispdir)
  122. $(CP) $(ELCFILES) $(lispdir)
  123. install-info: $(INFOFILES)
  124. if [ ! -d $(infodir) ]; then $(MKDIR) $(infodir); else true; fi ;
  125. $(CP) $(INFOFILES) $(infodir)
  126. $(INSTALL_INFO) --info-file=$(INFOFILES) --info-dir=$(infodir)
  127. install-info-debian: $(INFOFILES)
  128. $(INSTALL_INFO) --infodir=$(infodir) $(INFOFILES)
  129. install-noutline: xemacs/noutline.elc
  130. if [ ! -d $(lispdir) ]; then $(MKDIR) $(lispdir); else true; fi ;
  131. $(CP) xemacs/noutline.el xemacs/noutline.elc $(lispdir)
  132. autoloads: lisp/org-install.el
  133. lisp/org-install.el: $(LISPFILES0) Makefile
  134. $(BATCH) --eval "(require 'autoload)" \
  135. --eval '(find-file "org-install.el")' \
  136. --eval '(erase-buffer)' \
  137. --eval '(mapc (lambda (x) (generate-file-autoloads (symbol-name x))) (quote ($(LISPFILES0))))' \
  138. --eval '(insert "\n(provide (quote org-install))\n")' \
  139. --eval '(save-buffer)'
  140. mv org-install.el lisp
  141. xemacs/noutline.elc: xemacs/noutline.el
  142. doc/org: doc/org.texi
  143. (cd doc; $(MAKEINFO) --no-split org.texi -o org)
  144. doc/org.pdf: doc/org.texi
  145. (cd doc; $(TEXI2PDF) org.texi)
  146. doc/org.html: doc/org.texi
  147. (cd doc; $(TEXI2HTML) --no-split -o org.html org.texi)
  148. UTILITIES/manfull.pl doc/org.html
  149. doc/orgcard.dvi: doc/orgcard.tex
  150. (cd doc; tex orgcard.tex)
  151. doc/orgcard.pdf: doc/orgcard.dvi
  152. dvips -q -f -t landscape doc/orgcard.dvi | gs -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=doc/orgcard.pdf -c .setpdfwrite -
  153. doc/orgcard.ps: doc/orgcard.dvi
  154. dvips -t landscape -o doc/orgcard.ps doc/orgcard.dvi
  155. doc/orgcard_letter.dvi: doc/orgcard.tex
  156. perl -pe 's/letterpaper=0/letterpaper=1/' doc/orgcard.tex > doc/orgcard_letter.tex
  157. (cd doc; tex orgcard_letter.tex)
  158. doc/orgcard_letter.pdf: doc/orgcard_letter.dvi
  159. dvips -q -f -t landscape doc/orgcard_letter.dvi | gs -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=doc/orgcard_letter.pdf -c .setpdfwrite -
  160. doc/orgcard_letter.ps: doc/orgcard_letter.dvi
  161. dvips -t landscape -o doc/orgcard_letter.ps doc/orgcard_letter.dvi
  162. # Below here are special targets for maintenance only
  163. updateweb:
  164. ssh cdominik@caprisun.dreamhost.com 'pull-worg-org.sh && publish-worg-org.sh'
  165. html: doc/org.html
  166. html_manual: doc/org.texi
  167. rm -rf doc/manual
  168. mkdir doc/manual
  169. $(TEXI2HTML) -o doc/manual doc/org.texi
  170. UTILITIES/mansplit.pl doc/manual/*.html
  171. info: doc/org
  172. pdf: doc/org.pdf
  173. card: doc/orgcard.pdf doc/orgcard.ps doc/orgcard_letter.pdf doc/orgcard_letter.ps
  174. distfile:
  175. @if [ "X$(TAG)" = "X" ]; then echo "*** No tag ***"; exit 1; fi
  176. touch doc/org.texi doc/orgcard.tex # force update
  177. ${MAKE} cleancontrib
  178. ${MAKE} info
  179. ${MAKE} doc
  180. ${MAKE} lisp/org-install.el
  181. rm -rf org-$(TAG) org-$(TAG).zip
  182. $(MKDIR) org-$(TAG)
  183. $(MKDIR) org-$(TAG)/xemacs
  184. $(MKDIR) org-$(TAG)/doc
  185. $(MKDIR) org-$(TAG)/lisp
  186. cp -r $(LISPFILES) org-$(TAG)/lisp
  187. cp -r $(DOCFILES) $(CARDFILES) org-$(TAG)/doc
  188. cp -r $(DISTFILES_extra) org-$(TAG)/
  189. cp -r README_DIST org-$(TAG)/README
  190. cp -r ORGWEBPAGE/Changes.org org-$(TAG)/
  191. cp -r $(DISTFILES_xemacs) org-$(TAG)/xemacs/
  192. zip -r org-$(TAG).zip org-$(TAG)
  193. gtar zcvf org-$(TAG).tar.gz org-$(TAG)
  194. release:
  195. @if [ "X$(TAG)" = "X" ]; then echo "*** No tag ***"; exit 1; fi
  196. ${MAKE} distfile
  197. ${MAKE} doc
  198. UTILITIES/gplmanual.pl
  199. ${MAKE} html_manual
  200. rm -rf RELEASEDIR
  201. $(MKDIR) RELEASEDIR
  202. cp org-$(TAG).zip org-$(TAG).tar.gz RELEASEDIR
  203. cp doc/org.pdf doc/orgcard.pdf doc/org.texi doc/org.html RELEASEDIR
  204. cp RELEASEDIR/org-$(TAG).zip RELEASEDIR/org.zip
  205. cp RELEASEDIR/org-$(TAG).tar.gz RELEASEDIR/org.tar.gz
  206. upload_release:
  207. rsync -avuz RELEASEDIR/ cdominik@orgmode.org:orgmode.org/
  208. upload_manual:
  209. rsync -avuz --delete doc/manual/ cdominik@orgmode.org:orgmode.org/manual/
  210. snap:
  211. ${MAKE} release TAG=snapshot
  212. scp RELEASEDIR/org-snapshot.zip cdominik@orgmode.org:orgmode.org/
  213. scp RELEASEDIR/org-snapshot.tar.gz cdominik@orgmode.org:orgmode.org/
  214. ${MAKE} cleanrel
  215. relup0:
  216. ${MAKE} release
  217. ${MAKE} upload_release
  218. relup:
  219. ${MAKE} release
  220. ${MAKE} upload_release
  221. ${MAKE} upload_manual
  222. db:
  223. grep -e '(debug)' lisp/*el
  224. cleancontrib:
  225. find contrib -name \*~ -exec rm {} \;
  226. cleanelc:
  227. rm -f $(ELCFILES)
  228. cleandoc:
  229. (cd doc; rm -f org.pdf org org.html orgcard.pdf orgcard.ps)
  230. (cd doc; rm -f *.aux *.cp *.cps *.dvi *.fn *.fns *.ky *.kys *.pg *.pgs)
  231. (cd doc; rm -f *.toc *.tp *.tps *.vr *.vrs *.log *.html *.ps)
  232. (cd doc; rm -f orgcard_letter.tex orgcard_letter.pdf)
  233. (cd doc; rm -rf manual)
  234. cleanrel:
  235. rm -rf RELEASEDIR
  236. rm -rf org-6.*
  237. rm -rf org-6*zip org-6*tar.gz org-snapshot*
  238. clean:
  239. ${MAKE} cleanelc
  240. ${MAKE} cleandoc
  241. ${MAKE} cleanrel
  242. rm -f *~ */*~ */*/*~
  243. cleanall:
  244. ${MAKE} clean
  245. rm -f lisp/org-install.el
  246. .el.elc:
  247. $(ELC) $<
  248. push:
  249. git-push git+ssh://repo.or.cz/srv/git/org-mode.git master
  250. pushtag:
  251. git-tag -m "Adding tag" -a $(TAG)
  252. git-push git+ssh://repo.or.cz/srv/git/org-mode.git $(TAG)
  253. pushreleasetag:
  254. git-tag -m "Adding release tag" -a release_$(TAG)
  255. git-push git+ssh://repo.or.cz/srv/git/org-mode.git release_$(TAG)
  256. dummy:
  257. echo ${prefix}
  258. # Dependencies
  259. lisp/org.elc: lisp/org-macs.el lisp/org-compat.el lisp/org-faces.el
  260. lisp/org-agenda.elc: lisp/org.el
  261. lisp/org-ascii.elc: lisp/org-exp.el
  262. lisp/org-attach.elc: lisp/org.el lisp/org-id.el
  263. lisp/org-archive.elc: lisp/org.el
  264. lisp/org-bbdb.elc: lisp/org.el
  265. lisp/org-bibtex.elc: lisp/org.el
  266. lisp/org-clock.elc: lisp/org.el
  267. lisp/org-colview.elc: lisp/org.el
  268. lisp/org-colview-xemacs.elc: lisp/org.el
  269. lisp/org-compat.elc: lisp/org-macs.el
  270. lisp/org-crypt.elc: lisp/org-crypt.el lisp/org.el
  271. lisp/org-exp.elc: lisp/org.el lisp/org-agenda.el
  272. lisp/org-exp-blocks.elc: lisp/org.el
  273. lisp/org-latex.elc: lisp/org.el lisp/org-exp.el
  274. lisp/org-docbook.elc: lisp/org.el lisp/org-exp.el
  275. lisp/org-faces.elc: lisp/org-macs.el lisp/org-compat.el
  276. lisp/org-feed.elc: lisp/org.el
  277. lisp/org-footnotes.elc: lisp/org-macs.el lisp/org-compat.el
  278. lisp/org-gnus.elc: lisp/org.el
  279. lisp/org-html.elc: lisp/org-exp.el
  280. lisp/org-icalendar.elc: lisp/org-exp.el
  281. lisp/org-id.elc: lisp/org.el
  282. lisp/org-indent.elc: lisp/org.el lisp/org-macs.el lisp/org-compat.el
  283. lisp/org-info.elc: lisp/org.el
  284. lisp/org-inlinetask.elc:
  285. lisp/org-irc.elc: lisp/org.el
  286. lisp/org-jsinfo.elc: lisp/org.el lisp/org-exp.el
  287. lisp/org-list.elc: lisp/org-macs.el lisp/org-compat.el
  288. lisp/org-mac-message.elc: lisp/org.el
  289. lisp/org-macs.elc:
  290. lisp/org-mew.elc: lisp/org.el
  291. lisp/org-mhe.elc: lisp/org.el
  292. lisp/org-mobile.elc: lisp/org.el
  293. lisp/org-mouse.elc: lisp/org.el
  294. lisp/org-plot.elc: lisp/org.el lisp/org-exp.el lisp/org-table.el
  295. lisp/org-publish.elc:
  296. lisp/org-protocol.elc: lisp/org.el
  297. lisp/org-remember.elc: lisp/org.el
  298. lisp/org-rmail.elc: lisp/org.el
  299. lisp/org-src.elc: lisp/org-macs.el lisp/org-compat.el
  300. lisp/org-table.elc: lisp/org.el
  301. lisp/org-timer.elc: lisp/org.el
  302. lisp/org-vm.elc: lisp/org.el
  303. lisp/org-w3m.elc: lisp/org.el
  304. lisp/org-wl.elc: lisp/org.el
  305. lisp/org-xoxo.elc: lisp/org-exp.el