More options for categories in iCalendar export.
[org-mode.git] / Makefile
blob712277f3e6ed32bb104dc3e3cb1072329c152b35
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)/info
25 ##----------------------------------------------------------------------
26 ## YOU MAY NEED TO EDIT THESE
27 ##----------------------------------------------------------------------
29 # Using emacs in batch mode.
30 # BATCH=$(EMACS) -batch -q
31 # BATCH=$(EMACS) -batch -q -eval "(add-to-list (quote load-path) \".\")"
33 BATCH=$(EMACS) -batch -q -eval \
34 "(progn (add-to-list (quote load-path) (expand-file-name \"./lisp/\")) \
35 (add-to-list (quote load-path) \"$(lispdir)\"))"
37 # Specify the byte-compiler for compiling org-mode files
38 ELC= $(BATCH) -f batch-byte-compile
40 # How to make a pdf file from a texinfo file
41 TEXI2PDF = texi2pdf
43 # How to create directories
44 MKDIR = mkdir -p
46 # How to create the info files from the texinfo file
47 MAKEINFO = makeinfo
49 # How to create the HTML file
50 TEXI2HTML = makeinfo --html --number-sections
52 # How to copy the lisp files and elc files to their distination.
53 CP = cp -p
55 ##----------------------------------------------------------------------
56 ## BELOW THIS LINE ON YOUR OWN RISK!
57 ##----------------------------------------------------------------------
59 # The following variables need to be defined by the maintainer
60 LISPF = org.el \
61 org-agenda.el \
62 org-archive.el \
63 org-bbdb.el \
64 org-bibtex.el \
65 org-clock.el \
66 org-colview.el \
67 org-colview-xemacs.el \
68 org-compat.el \
69 org-exp.el \
70 org-export-latex.el \
71 org-faces.el \
72 org-gnus.el \
73 org-id.el \
74 org-info.el \
75 org-jsinfo.el \
76 org-irc.el \
77 org-mac-message.el \
78 org-macs.el \
79 org-mew.el \
80 org-mhe.el \
81 org-mouse.el \
82 org-publish.el \
83 org-plot.el \
84 org-remember.el \
85 org-rmail.el \
86 org-table.el \
87 org-vm.el \
88 org-wl.el
90 LISPFILES0 = $(LISPF:%=lisp/%)
91 LISPFILES = $(LISPFILES0) lisp/org-install.el
92 ELCFILES0 = $(LISPFILES0:.el=.elc)
93 ELCFILES = $(LISPFILES:.el=.elc)
94 DOCFILES = doc/org.texi doc/org.pdf doc/org doc/dir
95 CARDFILES = doc/orgcard.tex doc/orgcard.pdf doc/orgcard_letter.pdf
96 TEXIFILES = doc/org.texi
97 INFOFILES = doc/org
100 .SUFFIXES: .el .elc .texi
101 SHELL = /bin/sh
103 # Additional distribution files
104 DISTFILES_extra= Makefile ChangeLog request-assign-future.txt contrib
105 DISTFILES_xemacs= xemacs/noutline.el xemacs/ps-print-invisible.el xemacs/README
107 default: $(ELCFILES)
109 all: $(ELCFILES) $(INFOFILES)
111 compile: $(ELCFILES0)
113 install: install-lisp
115 doc: doc/org.html doc/org.pdf doc/orgcard.pdf doc/orgcard_letter.pdf
118 make pdf && open doc/org.pdf
121 make card && gv doc/orgcard.ps
123 install-lisp: $(LISPFILES) $(ELCFILES)
124 if [ ! -d $(lispdir) ]; then $(MKDIR) $(lispdir); else true; fi ;
125 $(CP) $(LISPFILES) $(lispdir)
126 $(CP) $(ELCFILES) $(lispdir)
128 install-info: $(INFOFILES)
129 if [ ! -d $(infodir) ]; then $(MKDIR) $(infodir); else true; fi ;
130 $(CP) $(INFOFILES) $(infodir)
132 install-noutline: xemacs/noutline.elc
133 if [ ! -d $(lispdir) ]; then $(MKDIR) $(lispdir); else true; fi ;
134 $(CP) xemacs/noutline.el xemacs/noutline.elc $(lispdir)
136 autoloads: lisp/org-install.el
138 lisp/org-install.el: $(LISPFILES0) Makefile
139 $(BATCH) --eval "(require 'autoload)" \
140 --eval '(find-file "org-install.el")' \
141 --eval '(erase-buffer)' \
142 --eval '(mapc (lambda (x) (generate-file-autoloads (symbol-name x))) (quote ($(LISPFILES0))))' \
143 --eval '(insert "\n(provide (quote org-install))\n")' \
144 --eval '(save-buffer)'
145 mv org-install.el lisp
147 xemacs/noutline.elc: xemacs/noutline.el
149 doc/org: doc/org.texi
150 (cd doc; $(MAKEINFO) --no-split org.texi -o org)
152 doc/org.pdf: doc/org.texi
153 (cd doc; $(TEXI2PDF) org.texi)
155 doc/org.html: doc/org.texi
156 (cd doc; $(TEXI2HTML) --no-split -o org.html org.texi)
158 doc/orgcard.dvi: doc/orgcard.tex
159 (cd doc; tex orgcard.tex)
161 doc/orgcard.pdf: doc/orgcard.dvi
162 dvips -q -f -t landscape doc/orgcard.dvi | gs -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=doc/orgcard.pdf -c .setpdfwrite -
164 doc/orgcard.ps: doc/orgcard.dvi
165 dvips -t landscape -o doc/orgcard.ps doc/orgcard.dvi
167 doc/orgcard_letter.dvi: doc/orgcard.tex
168 perl -pe 's/letterpaper=0/letterpaper=1/' doc/orgcard.tex > doc/orgcard_letter.tex
169 (cd doc; tex orgcard_letter.tex)
171 doc/orgcard_letter.pdf: doc/orgcard_letter.dvi
172 dvips -q -f -t landscape doc/orgcard_letter.dvi | gs -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=doc/orgcard_letter.pdf -c .setpdfwrite -
174 doc/orgcard_letter.ps: doc/orgcard_letter.dvi
175 dvips -t landscape -o doc/orgcard_letter.ps doc/orgcard_letter.dvi
177 # Below here are special targets for maintenance only
179 updateweb:
180 ssh cdominik@caprisun.dreamhost.com 'pull-worg-org.sh && publish-worg-org.sh'
182 html: doc/org.html
184 html_manual: doc/org.texi
185 rm -rf doc/manual
186 mkdir doc/manual
187 $(TEXI2HTML) -o doc/manual doc/org.texi
189 info: doc/org
191 pdf: doc/org.pdf
193 card: doc/orgcard.pdf doc/orgcard.ps doc/orgcard_letter.pdf doc/orgcard_letter.ps
195 distfile:
196 @if [ "X$(TAG)" = "X" ]; then echo "*** No tag ***"; exit 1; fi
197 touch doc/org.texi doc/orgcard.tex # force update
198 make info
199 make doc
200 make lisp/org-install.el
201 rm -rf org-$(TAG) org-$(TAG).zip
202 $(MKDIR) org-$(TAG)
203 $(MKDIR) org-$(TAG)/xemacs
204 $(MKDIR) org-$(TAG)/doc
205 $(MKDIR) org-$(TAG)/lisp
206 cp -r $(LISPFILES) org-$(TAG)/lisp
207 cp -r $(DOCFILES) $(CARDFILES) org-$(TAG)/doc
208 cp -r $(DISTFILES_extra) org-$(TAG)/
209 cp -r README_DIST org-$(TAG)/README
210 cp -r ORGWEBPAGE/Changes.org org-$(TAG)/
211 cp -r $(DISTFILES_xemacs) org-$(TAG)/xemacs/
212 zip -r org-$(TAG).zip org-$(TAG)
213 gtar zcvf org-$(TAG).tar.gz org-$(TAG)
215 release:
216 @if [ "X$(TAG)" = "X" ]; then echo "*** No tag ***"; exit 1; fi
217 make distfile
218 make doc
219 UTILITIES/gplmanual.pl
220 make html_manual
221 rm -rf RELEASEDIR
222 $(MKDIR) RELEASEDIR
223 cp org-$(TAG).zip org-$(TAG).tar.gz RELEASEDIR
224 cp doc/org.pdf doc/orgcard.pdf doc/org.texi doc/org.html RELEASEDIR
225 cp RELEASEDIR/org-$(TAG).zip RELEASEDIR/org.zip
226 cp RELEASEDIR/org-$(TAG).tar.gz RELEASEDIR/org.tar.gz
228 upload_release:
229 (cd RELEASEDIR; lftp -f ../../org-mode-proprietary/ftp_upload_release_legito)
231 upload_manual:
232 lftp -f ../org-mode-proprietary/ftp_upload_manual_legito
234 relup0:
235 make release
236 make upload_release
238 relup:
239 make release
240 make upload_release
241 make upload_manual
244 grep -e '(debug)' lisp/*el
246 cleanelc:
247 rm -f $(ELCFILES)
248 cleandoc:
249 (cd doc; rm -f org.pdf org org.html orgcard.pdf orgcard.ps)
250 (cd doc; rm -f *.aux *.cp *.cps *.dvi *.fn *.fns *.ky *.kys *.pg *.pgs)
251 (cd doc; rm -f *.toc *.tp *.tps *.vr *.vrs *.log *.html *.ps)
252 (cd doc; rm -f orgcard_letter.tex orgcard_letter.pdf)
253 (cd doc; rm -rf manual)
254 clean:
255 make cleanelc
256 make cleandoc
257 rm -f *~ */*~ */*/*~
258 rm -rf RELEASEDIR
259 rm -f lisp/org-install.el
261 .el.elc:
262 $(ELC) $<
265 push:
266 git-push git+ssh://repo.or.cz/srv/git/org-mode.git master
268 pushtag:
269 git-tag -m "Adding tag" -a $(TAG)
270 git-push git+ssh://repo.or.cz/srv/git/org-mode.git $(TAG)
272 pushreleasetag:
273 git-tag -m "Adding release tag" -a release_$(TAG)
274 git-push git+ssh://repo.or.cz/srv/git/org-mode.git release_$(TAG)
276 dummy:
277 echo ${prefix}
279 # Dependencies
281 lisp/org.elc: lisp/org-macs.elc lisp/org-compat.elc lisp/org-faces.elc
282 lisp/org-agenda.elc: lisp/org.elc
283 lisp/org-archive.elc: lisp/org.elc
284 lisp/org-bbdb.elc: lisp/org.elc
285 lisp/org-bibtex.elc: lisp/org.elc
286 lisp/org-clock.elc: lisp/org.elc
287 lisp/org-colview.elc: lisp/org.elc
288 lisp/org-colview-xemacs.elc: lisp/org.elc
289 lisp/org-compat.elc:
290 lisp/org-exp.elc: lisp/org.elc lisp/org-agenda.elc
291 lisp/org-export-latex.elc: lisp/org.elc lisp/org-exp.elc
292 lisp/org-faces.elc: lisp/org-macs.elc lisp/org-compat.elc
293 lisp/org-gnus.elc: lisp/org.elc
294 lisp/org-id.elc: lisp/org.elc
295 lisp/org-info.elc: lisp/org.elc
296 lisp/org-jsinfo.elc: lisp/org.elc lisp/org-exp.elc
297 lisp/org-irc.elc: lisp/org.elc
298 lisp/org-mac-message.elc: lisp/org.elc
299 lisp/org-macs.elc:
300 lisp/org-mew.elc: lisp/org.elc
301 lisp/org-mhe.elc: lisp/org.elc
302 lisp/org-mouse.elc: lisp/org.elc
303 lisp/org-publish.elc:
304 lisp/org-remember.elc: lisp/org.elc
305 lisp/org-rmail.elc: lisp/org.elc
306 lisp/org-table.elc: lisp/org.elc
307 lisp/org-vm.elc: lisp/org.elc
308 lisp/org-wl.elc: lisp/org.elc