1 # Makefile - for the org-mode distribution
3 # Maintainer: Carsten Dominik <dominik@science.uva.nl>
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
16 # Where local software is found
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
40 # How to create directories
43 # How to create the info files from the texinfo file
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.
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
72 org-colview-xemacs.el \
111 org-special-blocks.el \
164 LISPFILES0
= $(LISPF
:%=lisp
/%)
165 LISPFILES
= $(LISPFILES0
) lisp
/org-install.el
166 ELCFILES0
= $(LISPFILES0
:.el
=.elc
)
167 ELCFILES
= $(LISPFILES
:.el
=.elc
)
168 DOCFILES
= doc
/org.texi doc
/org.pdf doc
/org doc
/dir \
169 doc
/pdflayout.sty doc
/.nosearch \
170 doc
/orgguide.texi doc
/orgguide.pdf
171 CARDFILES
= doc
/orgcard.
tex doc
/orgcard.pdf doc
/orgcard_letter.pdf
172 TEXIFILES
= doc
/org.texi
175 # Package Manager (ELPA)
176 PKG_TAG
= $(shell date
+%Y
%m
%d
)
177 PKG_DOC
= "Outline-based notes management and organizer"
180 PKG_FILES
= $(LISPFILES0
) \
187 doc
/orgcard_letter.pdf
189 .SUFFIXES
: .el .elc .texi
192 # Additional distribution files
193 DISTFILES_extra
= Makefile request-assign-future.txt contrib
195 default
: $(ELCFILES
) $(ELCBFILES
)
197 all: $(ELCFILES
) $(ELCBFILES
) $(INFOFILES
)
207 compile
: $(ELCFILES0
) $(ELCBFILES
)
209 install: install-lisp
211 doc
: doc
/org.html doc
/org.pdf doc
/orgcard.pdf doc
/orgcard_letter.pdf doc
/orgguide.pdf doc
/orgcard.txt
214 ${MAKE} pdf
&& open doc
/org.pdf
217 ${MAKE} pdf
&& open doc
/orgguide.pdf
219 install-lisp
: $(LISPFILES
) $(ELCFILES
)
220 if
[ ! -d
$(lispdir
) ]; then
$(MKDIR
) $(lispdir
); else true
; fi
;
221 $(CP
) $(LISPFILES
) $(lispdir
)
222 $(CP
) $(ELCFILES
) $(lispdir
)
224 install-info
: $(INFOFILES
)
225 if
[ ! -d
$(infodir) ]; then
$(MKDIR
) $(infodir); else true
; fi
;
226 $(CP
) $(INFOFILES
) $(infodir)
227 $(INSTALL_INFO
) --infodir=$(infodir) $(INFOFILES
)
229 autoloads
: lisp
/org-install.el
231 lisp
/org-install.el
: $(LISPFILES0
) Makefile
232 $(BATCH
) --eval
"(require 'autoload)" \
233 --eval
'(find-file "lisp/org-install.el")' \
234 --eval
'(erase-buffer)' \
235 --eval
'(mapc (lambda (x) (generate-file-autoloads (symbol-name x))) (quote ($(LISPF))))' \
236 --eval
'(insert "\n(provide (quote org-install))\n")' \
237 --eval
'(save-buffer)'
239 doc
/org
: doc
/org.texi
240 (cd doc
&& $(MAKEINFO
) --no-split org.texi
-o org
)
242 doc
/org.pdf
: doc
/org.texi
243 (cd doc
&& $(TEXI2PDF
) org.texi
)
245 doc
/orgguide.pdf
: doc
/orgguide.texi
246 (cd doc
&& $(TEXI2PDF
) orgguide.texi
)
248 doc
/org.html
: doc
/org.texi
249 (cd doc
&& $(TEXI2HTML
) --no-split
-o org.html org.texi
)
250 UTILITIES
/manfull.pl doc
/org.html
252 doc
/orgcard.pdf
: doc
/orgcard.
tex
253 (cd doc
&& pdftex orgcard.
tex)
255 doc
/orgcard.txt
: doc
/orgcard.
tex
256 (cd doc
&& perl ..
/UTILITIES
/orgcard2txt.pl orgcard.
tex > orgcard.txt
)
258 doc
/orgcard_letter.
tex: doc
/orgcard.
tex
259 perl
-pe
's/\\pdflayout=\(0l\)/\\pdflayout=(1l)/' \
260 doc
/orgcard.
tex > doc
/orgcard_letter.
tex
262 doc
/orgcard_letter.pdf
: doc
/orgcard_letter.
tex
263 (cd doc
&& pdftex orgcard_letter.
tex)
265 # Below here are special targets for maintenance only
269 html_manual
: doc
/org.texi
272 $(TEXI2HTML
) -o doc
/manual doc
/org.texi
273 UTILITIES
/mansplit.pl doc
/manual
/*.html
275 html_guide
: doc
/orgguide.texi
278 $(TEXI2HTML
) -o doc
/guide doc
/orgguide.texi
279 UTILITIES
/guidesplit.pl doc
/guide
/*.html
283 pdf
: doc
/org.pdf doc
/orgguide.pdf
285 card
: doc
/orgcard.pdf doc
/orgcard_letter.pdf doc
/orgcard.txt
288 git checkout
-b testrelease
origin/maint
289 git merge
-s recursive
-X theirs master
290 UTILITIES
/set-version.pl testing
291 git commit
-a
-m
"Release testing"
292 make distfile TAG
=testversion
294 rm -rf org-testversion
*
297 git branch
-D testrelease
299 # The following target makes a full release for the stuff that is
300 # currently on master. Do it like this:
302 # make release TAG=7.01
306 git merge
-s recursive
-X theirs master
307 UTILITIES
/set-version.pl
$(TAG
)
308 git commit
-a
-m
"Release $(TAG)"
309 make relup TAG
=$(TAG
)
312 rm -f org-
$(TAG
)*.zip
313 rm -f org-
$(TAG
)*.
tar.gz
314 make pushreleasetag TAG
=$(TAG
)
315 git push
-f
origin maint
317 git merge
-s ours maint
318 UTILITIES
/set-version.pl
-a
$(TAG
)
319 git commit
-a
-m
"Update website to show $(TAG) as current release"
322 # The following target makes a release, but from the stuff that is on
323 # maint, not from the stuff that is on master. The idea is that it pushes
324 # out a minor fix into a minor update, while development on master
325 # already went full steam ahead. To make a micro-relesse, cherry-pick
326 # the necessary changes into maint, then run (with proper version number)
327 # This is just like release, but we skip the step which merges master
330 # make fixrelease TAG=7.01.02
334 git merge
-s recursive
-X theirs master
335 UTILITIES
/set-version.pl
$(TAG
)
336 git commit
-a
-m
"Release $(TAG)"
337 make relup TAG
=$(TAG
)
341 rm org-
$(TAG
)*.
tar.gz
342 make pushreleasetag TAG
=$(TAG
)
343 git push
-f
origin maint
345 git merge
-s ours maint
346 UTILITIES
/set-version.pl
-o
$(TAG
)
347 git commit
-a
-m
"Update website to show $(TAG) as current release"
350 # ~$ make relup only makes sense from orgmode.org server
351 # Don't call it from your computer!
358 @if
[ "X$(TAG)" = "X" ]; then echo
"*** No tag ***"; exit
1; fi
361 UTILITIES
/gplmanual.pl
366 cp org-
$(TAG
).zip org-
$(TAG
).
tar.gz RELEASEDIR
367 cp doc
/org.pdf doc
/orgcard.pdf doc
/org.texi doc
/org.html RELEASEDIR
368 cp doc
/org_dual_license.texi RELEASEDIR
369 cp doc
/orgguide.pdf doc
/orgcard.txt RELEASEDIR
370 cp RELEASEDIR
/org-
$(TAG
).zip RELEASEDIR
/org.zip
371 cp RELEASEDIR
/org-
$(TAG
).
tar.gz RELEASEDIR
/org.
tar.gz
373 # ~$ make sync_release only makes sense from orgmode.org server
374 # Don't call it from your computer!
376 rsync
-avuz RELEASEDIR
/ /var
/www
/orgmode.org
/
378 # ~$ make sync_manual only makes sense from orgmode.org server
379 # Don't call it from your computer!
381 rsync
-avuz
--delete doc
/manual
/ /var
/www
/orgmode.org
/manual
/
382 rsync
-avuz
--delete doc
/guide
/ /var
/www
/orgmode.org
/guide
/
385 @if
[ "X$(TAG)" = "X" ]; then echo
"*** No tag ***"; exit
1; fi
386 touch doc
/org.texi doc
/orgcard.
tex # force update
390 ${MAKE} lisp
/org-install.el
391 rm -rf org-
$(TAG
) org-
$(TAG
).zip
393 $(MKDIR
) org-
$(TAG
)/doc
394 $(MKDIR
) org-
$(TAG
)/lisp
395 cp
-r
$(LISPFILES
) org-
$(TAG
)/lisp
396 cp
-r
$(DOCFILES
) $(CARDFILES
) org-
$(TAG
)/doc
397 cp
-r
$(DISTFILES_extra
) org-
$(TAG
)/
398 cp
-r README_DIST org-
$(TAG
)/README
399 zip
-r org-
$(TAG
).zip org-
$(TAG
)
400 tar zcvf org-
$(TAG
).
tar.gz org-
$(TAG
)
403 @if
[ "X$(PKG_TAG)" = "X" ]; then echo
"*** No tag ***"; exit
1; fi
404 touch doc
/org.texi doc
/orgcard.
tex # force update
407 rm -rf org-
$(PKG_TAG
) org-
$(PKG_TAG
).
tar
408 $(MKDIR
) org-
$(PKG_TAG
)
409 cp
-r
$(PKG_FILES
) org-
$(PKG_TAG
)
410 echo
"(define-package \"org\" \"$(PKG_TAG)\" \"$(PKG_DOC)\" $(PKG_REQ))" > org-
$(PKG_TAG
)/org-pkg.el
411 tar cf org-
$(PKG_TAG
).
tar org-
$(PKG_TAG
) --remove-files
415 rm -f lisp
/org-install.el
424 find contrib
-name \
*~
-exec
rm {} \
;
429 -(cd doc
&& rm -f org.pdf org org.html orgcard.pdf orgguide.pdf
)
430 -(cd doc
&& rm -f
*.aux
*.cp
*.cps
*.
dvi *.fn
*.fns
*.ky
*.kys
*.pg
*.pgs
)
431 -(cd doc
&& rm -f
*.toc
*.tp
*.tps
*.vr
*.vrs
*.log
*.html
*.ps
)
432 -(cd doc
&& rm -f orgcard_letter.
tex orgcard_letter.pdf
)
433 -(cd doc
&& rm -rf manual
)
438 rm -rf org-7
*zip org-7
*tar.gz
445 git push orgmode@orgmode.org
:org-mode.git master
448 git tag
-m
"Adding tag" -a
$(TAG
)
449 git push orgmode@orgmode.org
:org-mode.git
$(TAG
)
452 git tag
-m
"Adding release tag" -a release_
$(TAG
)
453 git push orgmode@orgmode.org
:org-mode.git release_
$(TAG
)
457 lisp
/org.elc
: lisp
/org-macs.el lisp
/org-compat.el lisp
/org-faces.el
458 lisp
/org-agenda.elc
: lisp
/org.el
459 lisp
/org-ascii.elc
: lisp
/org-exp.el
460 lisp
/org-attach.elc
: lisp
/org.el lisp
/org-id.el
461 lisp
/org-archive.elc
: lisp
/org.el
462 lisp
/org-bbdb.elc
: lisp
/org.el
463 lisp
/org-beamer.elc
: lisp
/org.el
464 lisp
/org-bibtex.elc
: lisp
/org.el
465 lisp
/org-capture.elc
: lisp
/org.el lisp
/org-mks.el
466 lisp
/org-clock.elc
: lisp
/org.el
467 lisp
/org-colview.elc
: lisp
/org.el
468 lisp
/org-colview-xemacs.elc
: lisp
/org.el
469 lisp
/org-compat.elc
: lisp
/org-macs.el
470 lisp
/org-crypt.elc
: lisp
/org-crypt.el lisp
/org.el
471 lisp
/org-ctags.elc
: lisp
/org.el
472 lisp
/org-datetree.elc
: lisp
/org.el
473 lisp
/org-docview.elc
: lisp
/org.el
474 lisp
/org-entities.elc
:
475 lisp
/org-exp.elc
: lisp
/org.el lisp
/org-agenda.el
476 lisp
/org-exp-blocks.elc
: lisp
/org.el
477 lisp
/org-latex.elc
: lisp
/org.el lisp
/org-exp.el lisp
/org-beamer.el
478 lisp
/org-docbook.elc
: lisp
/org.el lisp
/org-exp.el
479 lisp
/org-faces.elc
: lisp
/org-macs.el lisp
/org-compat.el
480 lisp
/org-feed.elc
: lisp
/org.el
481 lisp
/org-footnotes.elc
: lisp
/org-macs.el lisp
/org-compat.el
482 lisp
/org-freemind.elc
: lisp
/org.el
483 lisp
/org-gnus.elc
: lisp
/org.el
484 lisp
/org-html.elc
: lisp
/org-exp.el
485 lisp
/org-habit.elc
: lisp
/org.el lisp
/org-agenda.el
486 lisp
/org-icalendar.elc
: lisp
/org-exp.el
487 lisp
/org-id.elc
: lisp
/org.el
488 lisp
/org-indent.elc
: lisp
/org.el lisp
/org-macs.el lisp
/org-compat.el
489 lisp
/org-info.elc
: lisp
/org.el
490 lisp
/org-inlinetask.elc
:
491 lisp
/org-irc.elc
: lisp
/org.el
492 lisp
/org-jsinfo.elc
: lisp
/org.el lisp
/org-exp.el
493 lisp
/org-list.elc
: lisp
/org-macs.el lisp
/org-compat.el
494 lisp
/org-mac-message.elc
: lisp
/org.el
496 lisp
/org-mew.elc
: lisp
/org.el
497 lisp
/org-mhe.elc
: lisp
/org.el
499 lisp
/org-mobile.elc
: lisp
/org.el
500 lisp
/org-mouse.elc
: lisp
/org.el
501 lisp
/org-plot.elc
: lisp
/org.el lisp
/org-exp.el lisp
/org-table.el
502 lisp
/org-publish.elc
:
503 lisp
/org-protocol.elc
: lisp
/org.el
504 lisp
/org-remember.elc
: lisp
/org.el
505 lisp
/org-rmail.elc
: lisp
/org.el
506 lisp
/org-special-blocks.elc
: lisp
/org-compat.el
507 lisp
/org-src.elc
: lisp
/org-macs.el lisp
/org-compat.el
508 lisp
/org-table.elc
: lisp
/org.el
509 lisp
/org-taskjuggler.elc
: lisp
/org.el lisp
/org-exp.el
510 lisp
/org-timer.elc
: lisp
/org.el
511 lisp
/org-vm.elc
: lisp
/org.el
512 lisp
/org-w3m.elc
: lisp
/org.el
513 lisp
/org-wl.elc
: lisp
/org.el
514 lisp
/org-xoxo.elc
: lisp
/org-exp.el
516 # Describe valid make targets for org-mode.
518 @echo
"make - compile Org ELisp files"
519 @echo
"make clean - clean Elisp and documentation files"
520 @echo
"make all - compile Org ELisp files and documentation"
522 @echo
"make doc - make all documentation"
523 @echo
"make info - make Info documentation"
524 @echo
"make html - make HTML documentation"
525 @echo
"make pdf - make pdf documentation"
526 @echo
"make card - make refcards documentation"
528 @echo
"make install - install Org"
529 @echo
"make install-lisp - install Org ELisp files"
530 @echo
"make install-info - install Org Info file"