Release 5.06e
[org-mode.git] / Makefile
blob49046f0732bae6dfba47c2829327faaa80440e5a
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) \"$(lispdir)\")"
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 --no-split
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 LISPFILES = org.el org-publish.el org-mouse.el org-export-latex.el org-install.el
60 ELCFILES = $(LISPFILES:.el=.elc)
61 DOCFILES = org.texi org.pdf org
62 CARDFILES = orgcard.tex orgcard.pdf orgcard_letter.pdf
63 TEXIFILES = org.texi
64 INFOFILES = org
65 HTMLDIR = /home/dominik/public_html/Tools/org
67 .SUFFIXES: .el .elc .texi
68 SHELL = /bin/sh
70 DISTFILES= README ${LISPFILES} ${DOCFILES} ${CARDFILES} Makefile dir
71 DISTFILES_xemacs= xemacs/noutline.el xemacs/ps-print-invisible.el xemacs/README
73 all: $(ELCFILES)
75 install: install-lisp
77 doc: org.html org.pdf orgcard.pdf
80 make pdf && open org.pdf
83 make card && gv orgcard.ps
85 install-lisp: $(LISPFILES) $(ELCFILES)
86 if [ ! -d $(lispdir) ]; then $(MKDIR) $(lispdir); else true; fi ;
87 $(CP) $(LISPFILES) $(lispdir)
88 $(CP) $(ELCFILES) $(lispdir)
90 install-info: $(INFOFILES)
91 if [ ! -d $(infodir) ]; then $(MKDIR) $(infodir); else true; fi ;
92 $(CP) $(INFOFILES) $(infodir)
94 install-noutline: xemacs/noutline.elc
95 if [ ! -d $(lispdir) ]; then $(MKDIR) $(lispdir); else true; fi ;
96 $(CP) xemacs/noutline.el xemacs/noutline.elc $(lispdir)
98 org.elc: org.el
100 org-publish.elc: org-publish.el
102 org-install.elc: org-install.el
104 xemacs/noutline.elc: xemacs/noutline.el
106 #org: org.texi
107 # $(MAKEINFO) --no-split org.texi -o org
109 org.pdf: org.texi
110 $(TEXI2PDF) org.texi
112 org.html: org.texi
113 $(TEXI2HTML) -o org.html org.texi
115 orgcard.dvi: orgcard.tex
116 tex orgcard.tex
118 orgcard.pdf: orgcard.dvi
119 dvips -q -f -t landscape orgcard.dvi | gs -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=orgcard.pdf -c .setpdfwrite -
121 orgcard.ps: orgcard.dvi
122 dvips -t landscape -o orgcard.ps orgcard.dvi
124 orgcard_letter.dvi: orgcard.tex
125 perl -pe 's/letterpaper=0/letterpaper=1/' orgcard.tex > orgcard_letter.tex
126 tex orgcard_letter.tex
128 orgcard_letter.pdf: orgcard_letter.dvi
129 dvips -q -f -t landscape orgcard_letter.dvi | gs -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=orgcard_letter.pdf -c .setpdfwrite -
131 orgcard_letter.ps: orgcard_letter.dvi
132 dvips -t landscape -o orgcard_letter.ps orgcard_letter.dvi
134 # Below here are special targets for maintenance only
136 #info:
137 # $(MAKEINFO) --no-split org.texi -o org
139 pdf: org.pdf
141 card: orgcard.pdf orgcard.ps orgcard_letter.pdf orgcard_letter.ps
143 xcompile:
144 xemacs -batch -q -f batch-byte-compile $(LISPFILES)
146 ecompile:
147 emacs -batch -q -f batch-byte-compile $(LISPFILES)
149 distfile:
150 @if [ "X$(TAG)" = "X" ]; then echo "*** No tag ***"; exit 1; fi
151 # touch org.texi orgcard.tex
152 # make info
153 make doc
154 rm -rf org-$(TAG) org-$(TAG).zip
155 $(MKDIR) org-$(TAG)
156 $(MKDIR) org-$(TAG)/xemacs
157 cp $(DISTFILES) org-$(TAG)/
158 cp $(DISTFILES_xemacs) org-$(TAG)/xemacs/
159 zip -r org-$(TAG).zip org-$(TAG)
160 gtar zcvf org-$(TAG).tar.gz org-$(TAG)
162 dist:
163 make distfile TAG=$(TAG)
164 cp org-$(TAG).zip org-$(TAG).tar.gz $(HTMLDIR)
165 rm -f $(HTMLDIR)/org.zip $(HTMLDIR)/org.tar.gz
166 (cd $(HTMLDIR); ln -s org-$(TAG).zip org.zip)
167 (cd $(HTMLDIR); ln -s org-$(TAG).tar.gz org.tar.gz)
168 make doc
169 cp org.pdf orgcard.pdf org.texi org.html $(HTMLDIR)
171 minidist:
172 rm -f org-$(TAG).zip
173 zip org-$(TAG).zip org.el
174 scp org-$(TAG).zip remote.science.uva.nl:public_html/Tools/org/
176 clean:
177 rm -f $(ELCFILES) org.pdf org org.html orgcard.pdf orgcard.ps
178 rm -f *~
179 rm -f *.aux *.cp *.cps *.dvi *.fn *.fns *.ky *.kys *.pg *.pgs
180 rm -f *.toc *.tp *.tps *.vr *.vrs *.log *.html *.ps
182 .el.elc:
183 $(ELC) $<