New contributed modules org-mac-iCal.el by Christopher Suckling
[org-mode.git] / Makefile
blob4c2db39889167ef7d497ae080d73c921a5d9f75d
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 "(progn (add-to-list (quote load-path) (expand-file-name \"./lisp/\")) \
33 (add-to-list (quote load-path) \"$(lispdir)\"))"
35 # Specify the byte-compiler for compiling org-mode files
36 ELC= $(BATCH) -f batch-byte-compile
38 # How to make a pdf file from a texinfo file
39 TEXI2PDF = texi2pdf
41 # How to create directories
42 MKDIR = mkdir -p
44 # How to create the info files from the texinfo file
45 MAKEINFO = makeinfo
47 # How to create the HTML file
48 TEXI2HTML = makeinfo --html --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-bibtex.el \
68 org-clock.el \
69 org-colview.el \
70 org-colview-xemacs.el \
71 org-compat.el \
72 org-exp.el \
73 org-docbook.el \
74 org-faces.el \
75 org-feed.el \
76 org-footnote.el \
77 org-gnus.el \
78 org-html.el \
79 org-icalendar.el \
80 org-id.el \
81 org-info.el \
82 org-inlinetask.el \
83 org-jsinfo.el \
84 org-irc.el \
85 org-latex.el \
86 org-list.el \
87 org-mac-message.el \
88 org-macs.el \
89 org-mew.el \
90 org-mhe.el \
91 org-mouse.el \
92 org-publish.el \
93 org-plot.el \
94 org-protocol.el \
95 org-remember.el \
96 org-rmail.el \
97 org-table.el \
98 org-timer.el \
99 org-vm.el \
100 org-w3m.el \
101 org-wl.el \
102 org-xoxo.el
104 LISPFILES0 = $(LISPF:%=lisp/%)
105 LISPFILES = $(LISPFILES0) lisp/org-install.el
106 ELCFILES0 = $(LISPFILES0:.el=.elc)
107 ELCFILES = $(LISPFILES:.el=.elc)
108 DOCFILES = doc/org.texi doc/org.pdf doc/org doc/dir doc/.nosearch
109 CARDFILES = doc/orgcard.tex doc/orgcard.pdf doc/orgcard_letter.pdf
110 TEXIFILES = doc/org.texi
111 INFOFILES = doc/org
114 .SUFFIXES: .el .elc .texi
115 SHELL = /bin/sh
117 # Additional distribution files
118 DISTFILES_extra= Makefile ChangeLog request-assign-future.txt contrib
119 DISTFILES_xemacs= xemacs/noutline.el xemacs/ps-print-invisible.el xemacs/README
121 default: $(ELCFILES)
123 all: $(ELCFILES) $(INFOFILES)
125 up2: update
126 sudo ${MAKE} install
128 update:
129 git pull
130 ${MAKE} clean
131 ${MAKE} all
133 compile: $(ELCFILES0)
135 install: install-lisp
137 doc: doc/org.html doc/org.pdf doc/orgcard.pdf doc/orgcard_letter.pdf
140 ${MAKE} pdf && open doc/org.pdf
143 ${MAKE} card && gv doc/orgcard.ps
145 install-lisp: $(LISPFILES) $(ELCFILES)
146 if [ ! -d $(lispdir) ]; then $(MKDIR) $(lispdir); else true; fi ;
147 $(CP) $(LISPFILES) $(lispdir)
148 $(CP) $(ELCFILES) $(lispdir)
150 install-info: $(INFOFILES)
151 if [ ! -d $(infodir) ]; then $(MKDIR) $(infodir); else true; fi ;
152 $(CP) $(INFOFILES) $(infodir)
153 $(INSTALL_INFO) --info-file=$(INFOFILES) --info-dir=$(infodir)
155 install-info-debian: $(INFOFILES)
156 $(INSTALL_INFO) --infodir=$(infodir) $(INFOFILES)
158 install-noutline: xemacs/noutline.elc
159 if [ ! -d $(lispdir) ]; then $(MKDIR) $(lispdir); else true; fi ;
160 $(CP) xemacs/noutline.el xemacs/noutline.elc $(lispdir)
162 autoloads: lisp/org-install.el
164 lisp/org-install.el: $(LISPFILES0) Makefile
165 $(BATCH) --eval "(require 'autoload)" \
166 --eval '(find-file "org-install.el")' \
167 --eval '(erase-buffer)' \
168 --eval '(mapc (lambda (x) (generate-file-autoloads (symbol-name x))) (quote ($(LISPFILES0))))' \
169 --eval '(insert "\n(provide (quote org-install))\n")' \
170 --eval '(save-buffer)'
171 mv org-install.el lisp
173 xemacs/noutline.elc: xemacs/noutline.el
175 doc/org: doc/org.texi
176 (cd doc; $(MAKEINFO) --no-split org.texi -o org)
178 doc/org.pdf: doc/org.texi
179 (cd doc; $(TEXI2PDF) org.texi)
181 doc/org.html: doc/org.texi
182 (cd doc; $(TEXI2HTML) --no-split -o org.html org.texi)
183 UTILITIES/manfull.pl doc/org.html
185 doc/orgcard.dvi: doc/orgcard.tex
186 (cd doc; tex orgcard.tex)
188 doc/orgcard.pdf: doc/orgcard.dvi
189 dvips -q -f -t landscape doc/orgcard.dvi | gs -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=doc/orgcard.pdf -c .setpdfwrite -
191 doc/orgcard.ps: doc/orgcard.dvi
192 dvips -t landscape -o doc/orgcard.ps doc/orgcard.dvi
194 doc/orgcard_letter.dvi: doc/orgcard.tex
195 perl -pe 's/letterpaper=0/letterpaper=1/' doc/orgcard.tex > doc/orgcard_letter.tex
196 (cd doc; tex orgcard_letter.tex)
198 doc/orgcard_letter.pdf: doc/orgcard_letter.dvi
199 dvips -q -f -t landscape doc/orgcard_letter.dvi | gs -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=doc/orgcard_letter.pdf -c .setpdfwrite -
201 doc/orgcard_letter.ps: doc/orgcard_letter.dvi
202 dvips -t landscape -o doc/orgcard_letter.ps doc/orgcard_letter.dvi
204 # Below here are special targets for maintenance only
206 updateweb:
207 ssh cdominik@caprisun.dreamhost.com 'pull-worg-org.sh && publish-worg-org.sh'
209 html: doc/org.html
211 html_manual: doc/org.texi
212 rm -rf doc/manual
213 mkdir doc/manual
214 $(TEXI2HTML) -o doc/manual doc/org.texi
215 UTILITIES/mansplit.pl doc/manual/*.html
217 info: doc/org
219 pdf: doc/org.pdf
221 card: doc/orgcard.pdf doc/orgcard.ps doc/orgcard_letter.pdf doc/orgcard_letter.ps
223 distfile:
224 @if [ "X$(TAG)" = "X" ]; then echo "*** No tag ***"; exit 1; fi
225 touch doc/org.texi doc/orgcard.tex # force update
226 ${MAKE} cleancontrib
227 ${MAKE} info
228 ${MAKE} doc
229 ${MAKE} lisp/org-install.el
230 rm -rf org-$(TAG) org-$(TAG).zip
231 $(MKDIR) org-$(TAG)
232 $(MKDIR) org-$(TAG)/xemacs
233 $(MKDIR) org-$(TAG)/doc
234 $(MKDIR) org-$(TAG)/lisp
235 cp -r $(LISPFILES) org-$(TAG)/lisp
236 cp -r $(DOCFILES) $(CARDFILES) org-$(TAG)/doc
237 cp -r $(DISTFILES_extra) org-$(TAG)/
238 cp -r README_DIST org-$(TAG)/README
239 cp -r ORGWEBPAGE/Changes.org org-$(TAG)/
240 cp -r $(DISTFILES_xemacs) org-$(TAG)/xemacs/
241 zip -r org-$(TAG).zip org-$(TAG)
242 gtar zcvf org-$(TAG).tar.gz org-$(TAG)
244 release:
245 @if [ "X$(TAG)" = "X" ]; then echo "*** No tag ***"; exit 1; fi
246 ${MAKE} distfile
247 ${MAKE} doc
248 UTILITIES/gplmanual.pl
249 ${MAKE} html_manual
250 rm -rf RELEASEDIR
251 $(MKDIR) RELEASEDIR
252 cp org-$(TAG).zip org-$(TAG).tar.gz RELEASEDIR
253 cp doc/org.pdf doc/orgcard.pdf doc/org.texi doc/org.html RELEASEDIR
254 cp RELEASEDIR/org-$(TAG).zip RELEASEDIR/org.zip
255 cp RELEASEDIR/org-$(TAG).tar.gz RELEASEDIR/org.tar.gz
257 upload_release:
258 rsync -avuz RELEASEDIR/ cdominik@orgmode.org:orgmode.org/
260 upload_manual:
261 rsync -avuz --delete doc/manual/ cdominik@orgmode.org:orgmode.org/manual/
263 snap:
264 ${MAKE} release TAG=snapshot
265 scp RELEASEDIR/org-snapshot.zip cdominik@orgmode.org:orgmode.org/
266 scp RELEASEDIR/org-snapshot.tar.gz cdominik@orgmode.org:orgmode.org/
267 ${MAKE} cleanrel
269 relup0:
270 ${MAKE} release
271 ${MAKE} upload_release
273 relup:
274 ${MAKE} release
275 ${MAKE} upload_release
276 ${MAKE} upload_manual
279 grep -e '(debug)' lisp/*el
281 cleancontrib:
282 find contrib -name \*~ -exec rm {} \;
284 cleanelc:
285 rm -f $(ELCFILES)
286 cleandoc:
287 (cd doc; rm -f org.pdf org org.html orgcard.pdf orgcard.ps)
288 (cd doc; rm -f *.aux *.cp *.cps *.dvi *.fn *.fns *.ky *.kys *.pg *.pgs)
289 (cd doc; rm -f *.toc *.tp *.tps *.vr *.vrs *.log *.html *.ps)
290 (cd doc; rm -f orgcard_letter.tex orgcard_letter.pdf)
291 (cd doc; rm -rf manual)
293 cleanrel:
294 rm -rf RELEASEDIR
295 rm -rf org-6.*
296 rm -rf org-6*zip org-6*tar.gz org-snapshot*
298 clean:
299 ${MAKE} cleanelc
300 ${MAKE} cleandoc
301 ${MAKE} cleanrel
302 rm -f *~ */*~ */*/*~
304 cleanall:
305 ${MAKE} clean
306 rm -f lisp/org-install.el
308 .el.elc:
309 $(ELC) $<
312 push:
313 git-push git+ssh://repo.or.cz/srv/git/org-mode.git master
315 pushtag:
316 git-tag -m "Adding tag" -a $(TAG)
317 git-push git+ssh://repo.or.cz/srv/git/org-mode.git $(TAG)
319 pushreleasetag:
320 git-tag -m "Adding release tag" -a release_$(TAG)
321 git-push git+ssh://repo.or.cz/srv/git/org-mode.git release_$(TAG)
323 dummy:
324 echo ${prefix}
326 # 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-bibtex.elc: lisp/org.el
335 lisp/org-clock.elc: lisp/org.el
336 lisp/org-colview.elc: lisp/org.el
337 lisp/org-colview-xemacs.elc: lisp/org.el
338 lisp/org-compat.elc: lisp/org-macs.el
339 lisp/org-exp.elc: lisp/org.el lisp/org-agenda.el
340 lisp/org-latex.elc: lisp/org.el lisp/org-exp.el
341 lisp/org-docbook.elc: lisp/org.el lisp/org-exp.el
342 lisp/org-faces.elc: lisp/org-macs.el lisp/org-compat.el
343 lisp/org-feed.elc: lisp/org.el
344 lisp/org-footnotes.elc: lisp/org-macs.el lisp/org-compat.el
345 lisp/org-gnus.elc: lisp/org.el
346 lisp/org-html.elc: lisp/org-exp.el
347 lisp/org-icalendar.elc: lisp/org-exp.el
348 lisp/org-id.elc: lisp/org.el
349 lisp/org-info.elc: lisp/org.el
350 lisp/org-inlinetask.elc:
351 lisp/org-irc.elc: lisp/org.el
352 lisp/org-jsinfo.elc: lisp/org.el lisp/org-exp.el
353 lisp/org-list.elc: lisp/org-macs.el lisp/org-compat.el
354 lisp/org-mac-message.elc: lisp/org.el
355 lisp/org-macs.elc:
356 lisp/org-mew.elc: lisp/org.el
357 lisp/org-mhe.elc: lisp/org.el
358 lisp/org-mouse.elc: lisp/org.el
359 lisp/org-plot.elc: lisp/org.el lisp/org-exp.el lisp/org-table.el
360 lisp/org-publish.elc:
361 lisp/org-protocol.elc: lisp/org.el
362 lisp/org-remember.elc: lisp/org.el
363 lisp/org-rmail.elc: lisp/org.el
364 lisp/org-table.elc: lisp/org.el
365 lisp/org-timer.elc: lisp/org.el
366 lisp/org-vm.elc: lisp/org.el
367 lisp/org-w3m.elc: lisp/org.el
368 lisp/org-wl.elc: lisp/org.el
369 lisp/org-xoxo.elc: lisp/org-exp.el