Release 5.17
[org-mode.git] / Makefile
blob8b4a5bf76eda25fbb203632adbc4fcbd1acdc06d
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 # Specify the byte-compiler for compiling org-mode files
34 ELC= $(BATCH) -f batch-byte-compile
36 # How to make a pdf file from a texinfo file
37 TEXI2PDF = texi2pdf
39 # How to create directories
40 MKDIR = mkdir -p
42 # How to create the info files from the texinfo file
43 MAKEINFO = makeinfo
45 # How to create the HTML file
46 TEXI2HTML = makeinfo --html --number-sections
48 # How to move the byte compiled files to their destination.
49 MV = mv
51 # How to copy the lisp files to their distination.
52 CP = cp -p
54 ##----------------------------------------------------------------------
55 ## BELOW THIS LINE ON YOUR OWN RISK!
56 ##----------------------------------------------------------------------
58 # The following variables need to be defined by the maintainer
59 LISPFILES0 = org.el org-publish.el org-mouse.el org-export-latex.el
60 LISPFILES = $(LISPFILES0) org-install.el
61 ELCFILES = $(LISPFILES:.el=.elc)
62 DOCFILES = org.texi org.pdf org
63 CARDFILES = orgcard.tex orgcard.pdf orgcard_letter.pdf
64 TEXIFILES = org.texi
65 INFOFILES = org
66 HTMLDIR = /home/dominik/public_html/Tools/org
67 HG_RELEASES = ../org-mode-all-releases-hg/
69 .SUFFIXES: .el .elc .texi
70 SHELL = /bin/sh
72 DISTFILES= README ${LISPFILES} ${DOCFILES} ${CARDFILES} Makefile dir ChangeLog request-assign-future.txt
73 DISTFILES_xemacs= xemacs/noutline.el xemacs/ps-print-invisible.el xemacs/README
75 all: $(ELCFILES)
77 install: install-lisp
79 doc: org.html org.pdf orgcard.pdf
82 make pdf && open org.pdf
85 make card && gv orgcard.ps
87 install-lisp: $(LISPFILES) $(ELCFILES)
88 if [ ! -d $(lispdir) ]; then $(MKDIR) $(lispdir); else true; fi ;
89 $(CP) $(LISPFILES) $(lispdir)
90 $(CP) $(ELCFILES) $(lispdir)
92 install-info: $(INFOFILES)
93 if [ ! -d $(infodir) ]; then $(MKDIR) $(infodir); else true; fi ;
94 $(CP) $(INFOFILES) $(infodir)
96 install-noutline: xemacs/noutline.elc
97 if [ ! -d $(lispdir) ]; then $(MKDIR) $(lispdir); else true; fi ;
98 $(CP) xemacs/noutline.el xemacs/noutline.elc $(lispdir)
100 org-install.el: $(LISPFILES0)
101 $(BATCH) --eval "(require 'autoload)" \
102 --eval '(find-file "org-install.el")' \
103 --eval '(erase-buffer)' \
104 --eval '(generate-file-autoloads "org.el")' \
105 --eval '(generate-file-autoloads "org-mouse.el")' \
106 --eval '(generate-file-autoloads "org-publish.el")' \
107 --eval '(generate-file-autoloads "org-export-latex.el")' \
108 --eval '(insert "\n(provide (quote org-install))\n")' \
109 --eval '(save-buffer)'
111 org.elc: org.el
113 org-publish.elc: org-publish.el
115 org-install.elc: org-install.el
117 xemacs/noutline.elc: xemacs/noutline.el
119 org: org.texi
120 $(MAKEINFO) --no-split org.texi -o org
122 org.pdf: org.texi
123 $(TEXI2PDF) org.texi
125 org.html: org.texi
126 $(TEXI2HTML) --no-split -o org.html org.texi
128 orgcard.dvi: orgcard.tex
129 tex orgcard.tex
131 orgcard.pdf: orgcard.dvi
132 dvips -q -f -t landscape orgcard.dvi | gs -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=orgcard.pdf -c .setpdfwrite -
134 orgcard.ps: orgcard.dvi
135 dvips -t landscape -o orgcard.ps orgcard.dvi
137 orgcard_letter.dvi: orgcard.tex
138 perl -pe 's/letterpaper=0/letterpaper=1/' orgcard.tex > orgcard_letter.tex
139 tex orgcard_letter.tex
141 orgcard_letter.pdf: orgcard_letter.dvi
142 dvips -q -f -t landscape orgcard_letter.dvi | gs -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=orgcard_letter.pdf -c .setpdfwrite -
144 orgcard_letter.ps: orgcard_letter.dvi
145 dvips -t landscape -o orgcard_letter.ps orgcard_letter.dvi
147 # Below here are special targets for maintenance only
149 webfiles:
150 (cd ORGWEBPAGE; emacs -batch -l ~/.emacs index.org -f org-publish-current-project)
152 html: org.html
154 html_split: org.texi
155 rm -rf manual
156 mkdir manual
157 $(TEXI2HTML) -o manual org.texi
159 info:
160 $(MAKEINFO) --no-split org.texi -o org
162 pdf: org.pdf
164 card: orgcard.pdf orgcard.ps orgcard_letter.pdf orgcard_letter.ps
166 xcompile:
167 xemacs -batch -q -f batch-byte-compile $(LISPFILES)
169 ecompile:
170 emacs -batch -q -f batch-byte-compile $(LISPFILES)
172 distfile:
173 @if [ "X$(TAG)" = "X" ]; then echo "*** No tag ***"; exit 1; fi
174 touch org.texi orgcard.tex
175 make info
176 make doc
177 make org-install.el
178 rm -rf org-$(TAG) org-$(TAG).zip
179 $(MKDIR) org-$(TAG)
180 $(MKDIR) org-$(TAG)/xemacs
181 cp $(DISTFILES) org-$(TAG)/
182 cp $(DISTFILES_xemacs) org-$(TAG)/xemacs/
183 zip -r org-$(TAG).zip org-$(TAG)
184 gtar zcvf org-$(TAG).tar.gz org-$(TAG)
186 release:
187 @if [ "X$(TAG)" = "X" ]; then echo "*** No tag ***"; exit 1; fi
188 make webfiles
189 make distfile
190 make doc
191 make html_split
192 rm -rf RELEASEDIR
193 $(MKDIR) RELEASEDIR
194 cp org-$(TAG).zip org-$(TAG).tar.gz RELEASEDIR
195 cp org.pdf orgcard.pdf org.texi org.html RELEASEDIR
196 cp ORGWEBPAGE/tmp/*.html RELEASEDIR
197 cp ORGWEBPAGE/tmp/*.el RELEASEDIR
198 cp ORGWEBPAGE/tmp/*.txt RELEASEDIR
199 cp ORGWEBPAGE/tmp/*.css RELEASEDIR
200 cp ORGWEBPAGE/tmp/*.jpg RELEASEDIR
201 cp RELEASEDIR/org-$(TAG).zip RELEASEDIR/org.zip
202 cp RELEASEDIR/org-$(TAG).tar.gz RELEASEDIR/org.tar.gz
203 (cd $(HG_RELEASES); rm -rf $(DISTFILES) xemacs)
204 cp -r org-$(TAG)/* $(HG_RELEASES)
205 (cd $(HG_RELEASES); hg addremove; hg ci -m $(TAG); hg tag $(TAG))
207 trackrelease:
208 (cd $(HG_RELEASES); rm -rf $(DISTFILES) xemacs)
209 cp -r org-$(TAG)/* $(HG_RELEASES)
210 (cd $(HG_RELEASES); hg addremove; hg ci -m $(TAG); hg tag $(TAG))
212 upload:
213 (cd RELEASEDIR; lftp -f ../ftp_script)
215 upload_manual:
216 lftp -f ftp_script2
218 relup:
219 make release
220 make upload
221 make upload_manual
223 clean:
224 rm -f $(ELCFILES) org.pdf org org.html orgcard.pdf orgcard.ps
225 rm -f *~
226 rm -f *.aux *.cp *.cps *.dvi *.fn *.fns *.ky *.kys *.pg *.pgs
227 rm -f *.toc *.tp *.tps *.vr *.vrs *.log *.html *.ps
229 .el.elc:
230 $(ELC) $<