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 "(progn (add-to-list (quote load-path) \"$(lispdir)\") \
33 (add-to-list (quote load-path) (expand-file-name \"./lisp/\")))"
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
41 # How to create directories
44 # How to create the info files from the texinfo file
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.
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
70 org-colview-xemacs.el \
106 LISPFILES0
= $(LISPF
:%=lisp
/%)
107 LISPFILES
= $(LISPFILES0
) lisp
/org-install.el
108 ELCFILES0
= $(LISPFILES0
:.el
=.elc
)
109 ELCFILES
= $(LISPFILES
:.el
=.elc
)
110 DOCFILES
= doc
/org.texi doc
/org.pdf doc
/org doc
/dir doc
/.nosearch
111 CARDFILES
= doc
/orgcard.
tex doc
/orgcard.pdf doc
/orgcard_letter.pdf
112 TEXIFILES
= doc
/org.texi
116 .SUFFIXES
: .el .elc .texi
119 # Additional distribution files
120 DISTFILES_extra
= Makefile ChangeLog request-assign-future.txt contrib
121 DISTFILES_xemacs
= xemacs
/noutline.el xemacs
/ps-print-invisible.el xemacs
/README
125 all: $(ELCFILES
) $(INFOFILES
)
135 compile
: $(ELCFILES0
)
137 install: install-lisp
139 doc
: doc
/org.html doc
/org.pdf doc
/orgcard.pdf doc
/orgcard_letter.pdf
142 ${MAKE} pdf
&& open doc
/org.pdf
145 ${MAKE} card
&& gv doc
/orgcard.ps
147 install-lisp
: $(LISPFILES
) $(ELCFILES
)
148 if
[ ! -d
$(lispdir
) ]; then
$(MKDIR
) $(lispdir
); else true
; fi
;
149 $(CP
) $(LISPFILES
) $(lispdir
)
150 $(CP
) $(ELCFILES
) $(lispdir
)
152 install-info
: $(INFOFILES
)
153 if
[ ! -d
$(infodir) ]; then
$(MKDIR
) $(infodir); else true
; fi
;
154 $(CP
) $(INFOFILES
) $(infodir)
155 $(INSTALL_INFO
) --info-file
=$(INFOFILES
) --info-dir
=$(infodir)
157 install-info-debian
: $(INFOFILES
)
158 $(INSTALL_INFO
) --infodir=$(infodir) $(INFOFILES
)
160 install-noutline
: xemacs
/noutline.elc
161 if
[ ! -d
$(lispdir
) ]; then
$(MKDIR
) $(lispdir
); else true
; fi
;
162 $(CP
) xemacs
/noutline.el xemacs
/noutline.elc
$(lispdir
)
164 autoloads
: lisp
/org-install.el
166 lisp
/org-install.el
: $(LISPFILES0
) Makefile
167 $(BATCH
) --eval
"(require 'autoload)" \
168 --eval
'(find-file "org-install.el")' \
169 --eval
'(erase-buffer)' \
170 --eval
'(mapc (lambda (x) (generate-file-autoloads (symbol-name x))) (quote ($(LISPFILES0))))' \
171 --eval
'(insert "\n(provide (quote org-install))\n")' \
172 --eval
'(save-buffer)'
173 mv org-install.el lisp
175 xemacs
/noutline.elc
: xemacs
/noutline.el
177 doc
/org
: doc
/org.texi
178 (cd doc
; $(MAKEINFO
) --no-split org.texi
-o org
)
180 doc
/org.pdf
: doc
/org.texi
181 (cd doc
; $(TEXI2PDF
) org.texi
)
183 doc
/org.html
: doc
/org.texi
184 (cd doc
; $(TEXI2HTML
) --no-split
-o org.html org.texi
)
185 UTILITIES
/manfull.pl doc
/org.html
187 doc
/orgcard.
dvi: doc
/orgcard.
tex
188 (cd doc
; tex orgcard.
tex)
190 doc
/orgcard.pdf
: doc
/orgcard.
dvi
191 dvips
-q
-f
-t landscape doc
/orgcard.
dvi | gs
-q
-dNOPAUSE
-dBATCH
-sDEVICE
=pdfwrite
-sOutputFile
=doc
/orgcard.pdf
-c .setpdfwrite
-
193 doc
/orgcard.ps
: doc
/orgcard.
dvi
194 dvips
-t landscape
-o doc
/orgcard.ps doc
/orgcard.
dvi
196 doc
/orgcard_letter.
dvi: doc
/orgcard.
tex
197 perl
-pe
's/letterpaper=0/letterpaper=1/' doc
/orgcard.
tex > doc
/orgcard_letter.
tex
198 (cd doc
; tex orgcard_letter.
tex)
200 doc
/orgcard_letter.pdf
: doc
/orgcard_letter.
dvi
201 dvips
-q
-f
-t landscape doc
/orgcard_letter.
dvi | gs
-q
-dNOPAUSE
-dBATCH
-sDEVICE
=pdfwrite
-sOutputFile
=doc
/orgcard_letter.pdf
-c .setpdfwrite
-
203 doc
/orgcard_letter.ps
: doc
/orgcard_letter.
dvi
204 dvips
-t landscape
-o doc
/orgcard_letter.ps doc
/orgcard_letter.
dvi
206 # Below here are special targets for maintenance only
209 ssh cdominik@caprisun.dreamhost.com
'pull-worg-org.sh && publish-worg-org.sh'
213 html_manual
: doc
/org.texi
216 $(TEXI2HTML
) -o doc
/manual doc
/org.texi
217 UTILITIES
/mansplit.pl doc
/manual
/*.html
223 card
: doc
/orgcard.pdf doc
/orgcard.ps doc
/orgcard_letter.pdf doc
/orgcard_letter.ps
226 @if
[ "X$(TAG)" = "X" ]; then echo
"*** No tag ***"; exit
1; fi
227 touch doc
/org.texi doc
/orgcard.
tex # force update
231 ${MAKE} lisp
/org-install.el
232 rm -rf org-
$(TAG
) org-
$(TAG
).zip
234 $(MKDIR
) org-
$(TAG
)/xemacs
235 $(MKDIR
) org-
$(TAG
)/doc
236 $(MKDIR
) org-
$(TAG
)/lisp
237 cp
-r
$(LISPFILES
) org-
$(TAG
)/lisp
238 cp
-r
$(DOCFILES
) $(CARDFILES
) org-
$(TAG
)/doc
239 cp
-r
$(DISTFILES_extra
) org-
$(TAG
)/
240 cp
-r README_DIST org-
$(TAG
)/README
241 cp
-r ORGWEBPAGE
/Changes.org org-
$(TAG
)/
242 cp
-r
$(DISTFILES_xemacs
) org-
$(TAG
)/xemacs
/
243 zip
-r org-
$(TAG
).zip org-
$(TAG
)
244 gtar zcvf org-
$(TAG
).
tar.gz org-
$(TAG
)
247 @if
[ "X$(TAG)" = "X" ]; then echo
"*** No tag ***"; exit
1; fi
250 UTILITIES
/gplmanual.pl
254 cp org-
$(TAG
).zip org-
$(TAG
).
tar.gz RELEASEDIR
255 cp doc
/org.pdf doc
/orgcard.pdf doc
/org.texi doc
/org.html RELEASEDIR
256 cp RELEASEDIR
/org-
$(TAG
).zip RELEASEDIR
/org.zip
257 cp RELEASEDIR
/org-
$(TAG
).
tar.gz RELEASEDIR
/org.
tar.gz
260 rsync
-avuz RELEASEDIR
/ cdominik@orgmode.org
:orgmode.org
/
263 rsync
-avuz
--delete doc
/manual
/ cdominik@orgmode.org
:orgmode.org
/manual
/
266 ${MAKE} release TAG
=snapshot
267 scp RELEASEDIR
/org-snapshot.zip cdominik@orgmode.org
:orgmode.org
/
268 scp RELEASEDIR
/org-snapshot.
tar.gz cdominik@orgmode.org
:orgmode.org
/
273 ${MAKE} upload_release
277 ${MAKE} upload_release
278 ${MAKE} upload_manual
281 grep
-e
'(debug)' lisp
/*el
284 find contrib
-name \
*~
-exec
rm {} \
;
289 (cd doc
; rm -f org.pdf org org.html orgcard.pdf orgcard.ps
)
290 (cd doc
; rm -f
*.aux
*.cp
*.cps
*.
dvi *.fn
*.fns
*.ky
*.kys
*.pg
*.pgs
)
291 (cd doc
; rm -f
*.toc
*.tp
*.tps
*.vr
*.vrs
*.log
*.html
*.ps
)
292 (cd doc
; rm -f orgcard_letter.
tex orgcard_letter.pdf
)
293 (cd doc
; rm -rf manual
)
298 rm -rf org-6
*zip org-6
*tar.gz org-snapshot
*
308 rm -f lisp
/org-install.el
315 git-push git
+ssh
://repo.or.cz
/srv
/git
/org-mode.git master
318 git-tag
-m
"Adding tag" -a
$(TAG
)
319 git-push git
+ssh
://repo.or.cz
/srv
/git
/org-mode.git
$(TAG
)
322 git-tag
-m
"Adding release tag" -a release_
$(TAG
)
323 git-push git
+ssh
://repo.or.cz
/srv
/git
/org-mode.git release_
$(TAG
)
330 lisp
/org.elc
: lisp
/org-macs.el lisp
/org-compat.el lisp
/org-faces.el
331 lisp
/org-agenda.elc
: lisp
/org.el
332 lisp
/org-ascii.elc
: lisp
/org-exp.el
333 lisp
/org-attach.elc
: lisp
/org.el lisp
/org-id.el
334 lisp
/org-archive.elc
: lisp
/org.el
335 lisp
/org-bbdb.elc
: lisp
/org.el
336 lisp
/org-bibtex.elc
: lisp
/org.el
337 lisp
/org-clock.elc
: lisp
/org.el
338 lisp
/org-colview.elc
: lisp
/org.el
339 lisp
/org-colview-xemacs.elc
: lisp
/org.el
340 lisp
/org-compat.elc
: lisp
/org-macs.el
341 lisp
/org-exp.elc
: lisp
/org.el lisp
/org-agenda.el
342 lisp
/org-exp-blocks.elc
: lisp
/org.el
343 lisp
/org-latex.elc
: lisp
/org.el lisp
/org-exp.el
344 lisp
/org-docbook.elc
: lisp
/org.el lisp
/org-exp.el
345 lisp
/org-faces.elc
: lisp
/org-macs.el lisp
/org-compat.el
346 lisp
/org-feed.elc
: lisp
/org.el
347 lisp
/org-footnotes.elc
: lisp
/org-macs.el lisp
/org-compat.el
348 lisp
/org-gnus.elc
: lisp
/org.el
349 lisp
/org-html.elc
: lisp
/org-exp.el
350 lisp
/org-icalendar.elc
: lisp
/org-exp.el
351 lisp
/org-id.elc
: lisp
/org.el
352 lisp
/org-info.elc
: lisp
/org.el
353 lisp
/org-inlinetask.elc
:
354 lisp
/org-irc.elc
: lisp
/org.el
355 lisp
/org-jsinfo.elc
: lisp
/org.el lisp
/org-exp.el
356 lisp
/org-list.elc
: lisp
/org-macs.el lisp
/org-compat.el
357 lisp
/org-mac-message.elc
: lisp
/org.el
359 lisp
/org-mew.elc
: lisp
/org.el
360 lisp
/org-mhe.elc
: lisp
/org.el
361 lisp
/org-mouse.elc
: lisp
/org.el
362 lisp
/org-plot.elc
: lisp
/org.el lisp
/org-exp.el lisp
/org-table.el
363 lisp
/org-publish.elc
:
364 lisp
/org-protocol.elc
: lisp
/org.el
365 lisp
/org-remember.elc
: lisp
/org.el
366 lisp
/org-rmail.elc
: lisp
/org.el
367 lisp
/org-src.elc
: lisp
/org-macs.el lisp
/org-compat.el
368 lisp
/org-table.elc
: lisp
/org.el
369 lisp
/org-timer.elc
: lisp
/org.el
370 lisp
/org-vm.elc
: lisp
/org.el
371 lisp
/org-w3m.elc
: lisp
/org.el
372 lisp
/org-wl.elc
: lisp
/org.el
373 lisp
/org-xoxo.elc
: lisp
/org-exp.el