Revert "Refactor refiling code"
[org-mode/org-tableheadings.git] / Makefile
blobc94de13e54b260407150c9f1d7ea1b068efb44ec
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) \"$(lispdir)\") (add-to-list (quote load-path) (expand-file-name \"./lisp/\")))"
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
49 # How to copy the lisp files and elc files to their distination.
50 CP = cp -p
52 # Name of the program to install info files
53 INSTALL_INFO=install-info
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-ascii.el \
63 org-attach.el \
64 org-archive.el \
65 org-bbdb.el \
66 org-beamer.el \
67 org-bibtex.el \
68 org-clock.el \
69 org-colview.el \
70 org-colview-xemacs.el \
71 org-compat.el \
72 org-crypt.el \
73 org-ctags.el \
74 org-datetree.el \
75 org-docview.el \
76 org-exp.el \
77 org-exp-blocks.el \
78 org-docbook.el \
79 org-faces.el \
80 org-feed.el \
81 org-footnote.el \
82 org-freemind.el \
83 org-gnus.el \
84 org-habit.el \
85 org-html.el \
86 org-icalendar.el \
87 org-id.el \
88 org-indent.el \
89 org-info.el \
90 org-inlinetask.el \
91 org-jsinfo.el \
92 org-irc.el \
93 org-latex.el \
94 org-list.el \
95 org-mac-message.el \
96 org-macs.el \
97 org-mew.el \
98 org-mhe.el \
99 org-mobile.el \
100 org-mouse.el \
101 org-publish.el \
102 org-plot.el \
103 org-protocol.el \
104 org-remember.el \
105 org-rmail.el \
106 org-src.el \
107 org-table.el \
108 org-timer.el \
109 org-vm.el \
110 org-w3m.el \
111 org-wl.el \
112 org-xoxo.el
114 LISPFILES0 = $(LISPF:%=lisp/%)
115 LISPFILES = $(LISPFILES0) lisp/org-install.el
116 ELCFILES0 = $(LISPFILES0:.el=.elc)
117 ELCFILES = $(LISPFILES:.el=.elc)
118 DOCFILES = doc/org.texi doc/org.pdf doc/org doc/dir doc/.nosearch
119 CARDFILES = doc/orgcard.tex doc/orgcard.pdf doc/orgcard_letter.pdf
120 TEXIFILES = doc/org.texi
121 INFOFILES = doc/org
124 .SUFFIXES: .el .elc .texi
125 SHELL = /bin/sh
127 # Additional distribution files
128 DISTFILES_extra= Makefile ChangeLog request-assign-future.txt contrib
129 DISTFILES_xemacs= xemacs/noutline.el xemacs/ps-print-invisible.el xemacs/README
131 default: $(ELCFILES)
133 all: $(ELCFILES) $(INFOFILES)
135 up2: update
136 sudo ${MAKE} install
138 update:
139 git pull
140 ${MAKE} clean
141 ${MAKE} all
143 compile: $(ELCFILES0)
145 install: install-lisp
147 doc: doc/org.html doc/org.pdf doc/orgcard.pdf doc/orgcard_letter.pdf
150 ${MAKE} pdf && open doc/org.pdf
152 install-lisp: $(LISPFILES) $(ELCFILES)
153 if [ ! -d $(lispdir) ]; then $(MKDIR) $(lispdir); else true; fi ;
154 $(CP) $(LISPFILES) $(lispdir)
155 $(CP) $(ELCFILES) $(lispdir)
157 install-info: $(INFOFILES)
158 if [ ! -d $(infodir) ]; then $(MKDIR) $(infodir); else true; fi ;
159 $(CP) $(INFOFILES) $(infodir)
160 $(INSTALL_INFO) --info-file=$(INFOFILES) --info-dir=$(infodir)
162 install-info-debian: $(INFOFILES)
163 $(INSTALL_INFO) --infodir=$(infodir) $(INFOFILES)
165 install-noutline: xemacs/noutline.elc
166 if [ ! -d $(lispdir) ]; then $(MKDIR) $(lispdir); else true; fi ;
167 $(CP) xemacs/noutline.el xemacs/noutline.elc $(lispdir)
169 autoloads: lisp/org-install.el
171 lisp/org-install.el: $(LISPFILES0) Makefile
172 $(BATCH) --eval "(require 'autoload)" \
173 --eval '(find-file "org-install.el")' \
174 --eval '(erase-buffer)' \
175 --eval '(mapc (lambda (x) (generate-file-autoloads (symbol-name x))) (quote ($(LISPFILES0))))' \
176 --eval '(insert "\n(provide (quote org-install))\n")' \
177 --eval '(save-buffer)'
178 mv org-install.el lisp
180 xemacs/noutline.elc: xemacs/noutline.el
182 doc/org: doc/org.texi
183 (cd doc; $(MAKEINFO) --no-split org.texi -o org)
185 doc/org.pdf: doc/org.texi
186 (cd doc; $(TEXI2PDF) org.texi)
188 doc/org.html: doc/org.texi
189 (cd doc; $(TEXI2HTML) --no-split -o org.html org.texi)
190 UTILITIES/manfull.pl doc/org.html
192 doc/orgcard.pdf: doc/orgcard.tex
193 (cd doc; pdftex orgcard.tex)
195 doc/orgcard_letter.tex: doc/orgcard.tex
196 perl -pe 's/\\pdflayout=\(0l\)/\\pdflayout=(1l)/' \
197 doc/orgcard.tex > doc/orgcard_letter.tex
199 doc/orgcard_letter.pdf: doc/orgcard_letter.tex
200 (cd doc; pdftex orgcard_letter.tex)
202 # Below here are special targets for maintenance only
204 updateweb:
205 ssh cdominik@orgmode.org 'pull-worg-org.sh && publish-worg-org.sh'
207 html: doc/org.html
209 html_manual: doc/org.texi
210 rm -rf doc/manual
211 mkdir doc/manual
212 $(TEXI2HTML) -o doc/manual doc/org.texi
213 UTILITIES/mansplit.pl doc/manual/*.html
215 info: doc/org
217 pdf: doc/org.pdf
219 card: doc/orgcard.pdf doc/orgcard_letter.pdf
221 distfile:
222 @if [ "X$(TAG)" = "X" ]; then echo "*** No tag ***"; exit 1; fi
223 touch doc/org.texi doc/orgcard.tex # force update
224 ${MAKE} cleancontrib
225 ${MAKE} info
226 ${MAKE} doc
227 ${MAKE} lisp/org-install.el
228 rm -rf org-$(TAG) org-$(TAG).zip
229 $(MKDIR) org-$(TAG)
230 $(MKDIR) org-$(TAG)/xemacs
231 $(MKDIR) org-$(TAG)/doc
232 $(MKDIR) org-$(TAG)/lisp
233 cp -r $(LISPFILES) org-$(TAG)/lisp
234 cp -r $(DOCFILES) $(CARDFILES) org-$(TAG)/doc
235 cp -r $(DISTFILES_extra) org-$(TAG)/
236 cp -r README_DIST org-$(TAG)/README
237 cp -r ORGWEBPAGE/Changes.org org-$(TAG)/
238 cp -r $(DISTFILES_xemacs) org-$(TAG)/xemacs/
239 zip -r org-$(TAG).zip org-$(TAG)
240 gtar zcvf org-$(TAG).tar.gz org-$(TAG)
242 release:
243 @if [ "X$(TAG)" = "X" ]; then echo "*** No tag ***"; exit 1; fi
244 ${MAKE} distfile
245 ${MAKE} doc
246 UTILITIES/gplmanual.pl
247 ${MAKE} html_manual
248 rm -rf RELEASEDIR
249 $(MKDIR) RELEASEDIR
250 cp org-$(TAG).zip org-$(TAG).tar.gz RELEASEDIR
251 cp doc/org.pdf doc/orgcard.pdf doc/org.texi doc/org.html RELEASEDIR
252 cp RELEASEDIR/org-$(TAG).zip RELEASEDIR/org.zip
253 cp RELEASEDIR/org-$(TAG).tar.gz RELEASEDIR/org.tar.gz
255 upload_release:
256 rsync -avuz RELEASEDIR/ cdominik@orgmode.org:orgmode.org/
258 upload_manual:
259 rsync -avuz --delete doc/manual/ cdominik@orgmode.org:orgmode.org/manual/
261 relup0:
262 ${MAKE} release
263 ${MAKE} upload_release
265 relup:
266 ${MAKE} release
267 ${MAKE} upload_release
268 ${MAKE} upload_manual
271 grep -e '(debug)' lisp/*el
273 cleancontrib:
274 find contrib -name \*~ -exec rm {} \;
276 cleanelc:
277 rm -f $(ELCFILES)
278 cleandoc:
279 (cd doc; rm -f org.pdf org org.html orgcard.pdf)
280 (cd doc; rm -f *.aux *.cp *.cps *.dvi *.fn *.fns *.ky *.kys *.pg *.pgs)
281 (cd doc; rm -f *.toc *.tp *.tps *.vr *.vrs *.log *.html *.ps)
282 (cd doc; rm -f orgcard_letter.tex orgcard_letter.pdf)
283 (cd doc; rm -rf manual)
285 cleanrel:
286 rm -rf RELEASEDIR
287 rm -rf org-6.*
288 rm -rf org-6*zip org-6*tar.gz
290 clean:
291 ${MAKE} cleanelc
292 ${MAKE} cleandoc
293 ${MAKE} cleanrel
294 rm -f *~ */*~ */*/*~
296 cleanall:
297 ${MAKE} clean
298 rm -f lisp/org-install.el
300 .el.elc:
301 $(ELC) $<
304 push:
305 git-push git+ssh://repo.or.cz/srv/git/org-mode.git master
307 pushtag:
308 git-tag -m "Adding tag" -a $(TAG)
309 git-push git+ssh://repo.or.cz/srv/git/org-mode.git $(TAG)
311 pushreleasetag:
312 git-tag -m "Adding release tag" -a release_$(TAG)
313 git-push git+ssh://repo.or.cz/srv/git/org-mode.git release_$(TAG)
315 dummy:
316 echo ${prefix}
318 # Dependencies
320 lisp/org.elc: lisp/org-macs.el lisp/org-compat.el lisp/org-faces.el
321 lisp/org-agenda.elc: lisp/org.el
322 lisp/org-ascii.elc: lisp/org-exp.el
323 lisp/org-attach.elc: lisp/org.el lisp/org-id.el
324 lisp/org-archive.elc: lisp/org.el
325 lisp/org-bbdb.elc: lisp/org.el
326 lisp/org-beamer.elc: lisp/org.el
327 lisp/org-bibtex.elc: lisp/org.el
328 lisp/org-clock.elc: lisp/org.el
329 lisp/org-colview.elc: lisp/org.el
330 lisp/org-colview-xemacs.elc: lisp/org.el
331 lisp/org-compat.elc: lisp/org-macs.el
332 lisp/org-crypt.elc: lisp/org-crypt.el lisp/org.el
333 lisp/org-ctags.elc: lisp/org.el
334 lisp/org-datetree.elc: lisp/org.el
335 lisp/org-docview.elc: lisp/org.el
336 lisp/org-exp.elc: lisp/org.el lisp/org-agenda.el
337 lisp/org-exp-blocks.elc: lisp/org.el
338 lisp/org-latex.elc: lisp/org.el lisp/org-exp.el lisp/org-beamer.el
339 lisp/org-docbook.elc: lisp/org.el lisp/org-exp.el
340 lisp/org-faces.elc: lisp/org-macs.el lisp/org-compat.el
341 lisp/org-feed.elc: lisp/org.el
342 lisp/org-footnotes.elc: lisp/org-macs.el lisp/org-compat.el
343 lisp/org-freemind.elc: lisp/org.el
344 lisp/org-gnus.elc: lisp/org.el
345 lisp/org-html.elc: lisp/org-exp.el
346 lisp/org-habit.elc: lisp/org.el lisp/org-agenda.el
347 lisp/org-icalendar.elc: lisp/org-exp.el
348 lisp/org-id.elc: lisp/org.el
349 lisp/org-indent.elc: lisp/org.el lisp/org-macs.el lisp/org-compat.el
350 lisp/org-info.elc: lisp/org.el
351 lisp/org-inlinetask.elc:
352 lisp/org-irc.elc: lisp/org.el
353 lisp/org-jsinfo.elc: lisp/org.el lisp/org-exp.el
354 lisp/org-list.elc: lisp/org-macs.el lisp/org-compat.el
355 lisp/org-mac-message.elc: lisp/org.el
356 lisp/org-macs.elc:
357 lisp/org-mew.elc: lisp/org.el
358 lisp/org-mhe.elc: lisp/org.el
359 lisp/org-mobile.elc: lisp/org.el
360 lisp/org-mouse.elc: lisp/org.el
361 lisp/org-plot.elc: lisp/org.el lisp/org-exp.el lisp/org-table.el
362 lisp/org-publish.elc:
363 lisp/org-protocol.elc: lisp/org.el
364 lisp/org-remember.elc: lisp/org.el
365 lisp/org-rmail.elc: lisp/org.el
366 lisp/org-src.elc: lisp/org-macs.el lisp/org-compat.el
367 lisp/org-table.elc: lisp/org.el
368 lisp/org-timer.elc: lisp/org.el
369 lisp/org-vm.elc: lisp/org.el
370 lisp/org-w3m.elc: lisp/org.el
371 lisp/org-wl.elc: lisp/org.el
372 lisp/org-xoxo.elc: lisp/org-exp.el