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
71 org-colview-xemacs.el \
117 LISPFILES0
= $(LISPF
:%=lisp
/%)
118 LISPFILES
= $(LISPFILES0
) lisp
/org-install.el
119 ELCFILES0
= $(LISPFILES0
:.el
=.elc
)
120 ELCFILES
= $(LISPFILES
:.el
=.elc
)
121 DOCFILES
= doc
/org.texi doc
/org.pdf doc
/org doc
/dir \
122 doc
/pdflayout.sty doc
/.nosearch \
123 doc
/orgguide.texi doc
/orgguide.pdf
124 CARDFILES
= doc
/orgcard.
tex doc
/orgcard.pdf doc
/orgcard_letter.pdf
125 TEXIFILES
= doc
/org.texi
129 .SUFFIXES
: .el .elc .texi
132 # Additional distribution files
133 DISTFILES_extra
= Makefile ChangeLog request-assign-future.txt contrib
134 DISTFILES_xemacs
= xemacs
/noutline.el xemacs
/ps-print-invisible.el xemacs
/README
138 all: $(ELCFILES
) $(INFOFILES
)
148 compile
: $(ELCFILES0
)
150 install: install-lisp
152 doc
: doc
/org.html doc
/org.pdf doc
/orgcard.pdf doc
/orgcard_letter.pdf doc
/orgguide.pdf
155 ${MAKE} pdf
&& open doc
/org.pdf
158 ${MAKE} pdf
&& open doc
/orgguide.pdf
160 install-lisp
: $(LISPFILES
) $(ELCFILES
)
161 if
[ ! -d
$(lispdir
) ]; then
$(MKDIR
) $(lispdir
); else true
; fi
;
162 $(CP
) $(LISPFILES
) $(lispdir
)
163 $(CP
) $(ELCFILES
) $(lispdir
)
165 install-info
: $(INFOFILES
)
166 if
[ ! -d
$(infodir) ]; then
$(MKDIR
) $(infodir); else true
; fi
;
167 $(CP
) $(INFOFILES
) $(infodir)
168 $(INSTALL_INFO
) --info-file
=$(INFOFILES
) --info-dir
=$(infodir)
170 install-info-debian
: $(INFOFILES
)
171 $(INSTALL_INFO
) --infodir=$(infodir) $(INFOFILES
)
173 install-noutline
: xemacs
/noutline.elc
174 if
[ ! -d
$(lispdir
) ]; then
$(MKDIR
) $(lispdir
); else true
; fi
;
175 $(CP
) xemacs
/noutline.el xemacs
/noutline.elc
$(lispdir
)
177 autoloads
: lisp
/org-install.el
179 lisp
/org-install.el
: $(LISPFILES0
) Makefile
180 $(BATCH
) --eval
"(require 'autoload)" \
181 --eval
'(find-file "org-install.el")' \
182 --eval
'(erase-buffer)' \
183 --eval
'(mapc (lambda (x) (generate-file-autoloads (symbol-name x))) (quote ($(LISPFILES0))))' \
184 --eval
'(insert "\n(provide (quote org-install))\n")' \
185 --eval
'(save-buffer)'
186 mv org-install.el lisp
188 xemacs
/noutline.elc
: xemacs
/noutline.el
190 doc
/org
: doc
/org.texi
191 (cd doc
; $(MAKEINFO
) --no-split org.texi
-o org
)
193 doc
/org.pdf
: doc
/org.texi
194 (cd doc
; $(TEXI2PDF
) org.texi
)
196 doc
/orgguide.pdf
: doc
/orgguide.texi
197 (cd doc
; $(TEXI2PDF
) orgguide.texi
)
199 doc
/org.html
: doc
/org.texi
200 (cd doc
; $(TEXI2HTML
) --no-split
-o org.html org.texi
)
201 UTILITIES
/manfull.pl doc
/org.html
203 doc
/orgcard.pdf
: doc
/orgcard.
tex
204 (cd doc
; pdftex orgcard.
tex)
206 doc
/orgcard.txt
: doc
/orgcard.
tex
207 (cd doc
; perl ..
/UTILITIES
/orgcard2txt.pl orgcard.
tex > orgcard.txt
)
209 doc
/orgcard_letter.
tex: doc
/orgcard.
tex
210 perl
-pe
's/\\pdflayout=\(0l\)/\\pdflayout=(1l)/' \
211 doc
/orgcard.
tex > doc
/orgcard_letter.
tex
213 doc
/orgcard_letter.pdf
: doc
/orgcard_letter.
tex
214 (cd doc
; pdftex orgcard_letter.
tex)
216 # Below here are special targets for maintenance only
219 ssh cdominik@orgmode.org
'pull-worg-org.sh && publish-worg-org.sh'
223 html_manual
: doc
/org.texi
226 $(TEXI2HTML
) -o doc
/manual doc
/org.texi
227 UTILITIES
/mansplit.pl doc
/manual
/*.html
229 html_guide
: doc
/orgguide.texi
232 $(TEXI2HTML
) -o doc
/guide doc
/orgguide.texi
233 UTILITIES
/guidesplit.pl doc
/guide
/*.html
237 pdf
: doc
/org.pdf doc
/orgguide.pdf
239 card
: doc
/orgcard.pdf doc
/orgcard_letter.pdf doc
/orgcard.txt
242 @if
[ "X$(TAG)" = "X" ]; then echo
"*** No tag ***"; exit
1; fi
243 touch doc
/org.texi doc
/orgcard.
tex # force update
247 ${MAKE} lisp
/org-install.el
248 rm -rf org-
$(TAG
) org-
$(TAG
).zip
250 $(MKDIR
) org-
$(TAG
)/xemacs
251 $(MKDIR
) org-
$(TAG
)/doc
252 $(MKDIR
) org-
$(TAG
)/lisp
253 cp
-r
$(LISPFILES
) org-
$(TAG
)/lisp
254 cp
-r
$(DOCFILES
) $(CARDFILES
) org-
$(TAG
)/doc
255 cp
-r
$(DISTFILES_extra
) org-
$(TAG
)/
256 cp
-r README_DIST org-
$(TAG
)/README
257 cp
-r ORGWEBPAGE
/Changes.org org-
$(TAG
)/
258 cp
-r
$(DISTFILES_xemacs
) org-
$(TAG
)/xemacs
/
259 zip
-r org-
$(TAG
).zip org-
$(TAG
)
260 gtar zcvf org-
$(TAG
).
tar.gz org-
$(TAG
)
263 @if
[ "X$(TAG)" = "X" ]; then echo
"*** No tag ***"; exit
1; fi
266 UTILITIES
/gplmanual.pl
271 cp org-
$(TAG
).zip org-
$(TAG
).
tar.gz RELEASEDIR
272 cp doc
/org.pdf doc
/orgcard.pdf doc
/org.texi doc
/org.html RELEASEDIR
273 cp doc
/orgguide.pdf doc
/orgcard.txt RELEASEDIR
274 cp RELEASEDIR
/org-
$(TAG
).zip RELEASEDIR
/org.zip
275 cp RELEASEDIR
/org-
$(TAG
).
tar.gz RELEASEDIR
/org.
tar.gz
278 rsync
-avuz RELEASEDIR
/ cdominik@orgmode.org
:orgmode.org
/
281 rsync
-avuz
--delete doc
/manual
/ cdominik@orgmode.org
:orgmode.org
/manual
/
282 rsync
-avuz
--delete doc
/guide
/ cdominik@orgmode.org
:orgmode.org
/guide
/
286 ${MAKE} upload_release
290 ${MAKE} upload_release
291 ${MAKE} upload_manual
294 grep
-e
'(debug)' lisp
/*el
297 find contrib
-name \
*~
-exec
rm {} \
;
302 (cd doc
; rm -f org.pdf org org.html orgcard.pdf
)
303 (cd doc
; rm -f
*.aux
*.cp
*.cps
*.
dvi *.fn
*.fns
*.ky
*.kys
*.pg
*.pgs
)
304 (cd doc
; rm -f
*.toc
*.tp
*.tps
*.vr
*.vrs
*.log
*.html
*.ps
)
305 (cd doc
; rm -f orgcard_letter.
tex orgcard_letter.pdf
)
306 (cd doc
; rm -rf manual
)
311 rm -rf org-6
*zip org-6
*tar.gz
321 rm -f lisp
/org-install.el
328 git-push git
+ssh
://repo.or.cz
/srv
/git
/org-mode.git master
331 git-tag
-m
"Adding tag" -a
$(TAG
)
332 git-push git
+ssh
://repo.or.cz
/srv
/git
/org-mode.git
$(TAG
)
335 git-tag
-m
"Adding release tag" -a release_
$(TAG
)
336 git-push git
+ssh
://repo.or.cz
/srv
/git
/org-mode.git release_
$(TAG
)
343 lisp
/org.elc
: lisp
/org-macs.el lisp
/org-compat.el lisp
/org-faces.el
344 lisp
/org-agenda.elc
: lisp
/org.el
345 lisp
/org-ascii.elc
: lisp
/org-exp.el
346 lisp
/org-attach.elc
: lisp
/org.el lisp
/org-id.el
347 lisp
/org-archive.elc
: lisp
/org.el
348 lisp
/org-bbdb.elc
: lisp
/org.el
349 lisp
/org-beamer.elc
: lisp
/org.el
350 lisp
/org-bibtex.elc
: lisp
/org.el
351 lisp
/org-clock.elc
: lisp
/org.el
352 lisp
/org-colview.elc
: lisp
/org.el
353 lisp
/org-colview-xemacs.elc
: lisp
/org.el
354 lisp
/org-compat.elc
: lisp
/org-macs.el
355 lisp
/org-crypt.elc
: lisp
/org-crypt.el lisp
/org.el
356 lisp
/org-ctags.elc
: lisp
/org.el
357 lisp
/org-datetree.elc
: lisp
/org.el
358 lisp
/org-docview.elc
: lisp
/org.el
359 lisp
/org-entities.elc
:
360 lisp
/org-exp.elc
: lisp
/org.el lisp
/org-agenda.el
361 lisp
/org-exp-blocks.elc
: lisp
/org.el
362 lisp
/org-latex.elc
: lisp
/org.el lisp
/org-exp.el lisp
/org-beamer.el
363 lisp
/org-docbook.elc
: lisp
/org.el lisp
/org-exp.el
364 lisp
/org-faces.elc
: lisp
/org-macs.el lisp
/org-compat.el
365 lisp
/org-feed.elc
: lisp
/org.el
366 lisp
/org-footnotes.elc
: lisp
/org-macs.el lisp
/org-compat.el
367 lisp
/org-freemind.elc
: lisp
/org.el
368 lisp
/org-gnus.elc
: lisp
/org.el
369 lisp
/org-html.elc
: lisp
/org-exp.el
370 lisp
/org-habit.elc
: lisp
/org.el lisp
/org-agenda.el
371 lisp
/org-icalendar.elc
: lisp
/org-exp.el
372 lisp
/org-id.elc
: lisp
/org.el
373 lisp
/org-indent.elc
: lisp
/org.el lisp
/org-macs.el lisp
/org-compat.el
374 lisp
/org-info.elc
: lisp
/org.el
375 lisp
/org-inlinetask.elc
:
376 lisp
/org-irc.elc
: lisp
/org.el
377 lisp
/org-jsinfo.elc
: lisp
/org.el lisp
/org-exp.el
378 lisp
/org-list.elc
: lisp
/org-macs.el lisp
/org-compat.el
379 lisp
/org-mac-message.elc
: lisp
/org.el
381 lisp
/org-mew.elc
: lisp
/org.el
382 lisp
/org-mhe.elc
: lisp
/org.el
383 lisp
/org-mobile.elc
: lisp
/org.el
384 lisp
/org-mouse.elc
: lisp
/org.el
385 lisp
/org-plot.elc
: lisp
/org.el lisp
/org-exp.el lisp
/org-table.el
386 lisp
/org-publish.elc
:
387 lisp
/org-protocol.elc
: lisp
/org.el
388 lisp
/org-remember.elc
: lisp
/org.el
389 lisp
/org-rmail.elc
: lisp
/org.el
390 lisp
/org-src.elc
: lisp
/org-macs.el lisp
/org-compat.el
391 lisp
/org-table.elc
: lisp
/org.el
392 lisp
/org-taskjuggler.elc
: lisp
/org.el lisp
/org-exp.el
393 lisp
/org-timer.elc
: lisp
/org.el
394 lisp
/org-vm.elc
: lisp
/org.el
395 lisp
/org-w3m.elc
: lisp
/org.el
396 lisp
/org-wl.elc
: lisp
/org.el
397 lisp
/org-xoxo.elc
: lisp
/org-exp.el