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