yatex

view makefile @ 382:e009c4f86ede

Change default directory of HELP file to under `site-lisp/yatex'.
author HIROSE Yuuji <yuuji@gentei.org>
date Tue, 06 Jan 2015 20:29:08 +0900
parents 9cef5d10a0f1
children 04ee01ddb7ab
line source
1 #
2 # Makefile for YaTeX/yahtml
3 #
5 # Edit these variables to be suitable for your site
6 EMACS = emacs
7 #EMACS = mule
8 PREFIX = `${EMACS} -batch --eval '(princ (expand-file-name "../../../.." data-directory))'`
9 # PREFIX = /usr/local
11 #EMACSDIR= ${PREFIX}/lib/${EMACS}
12 ## emacs20 or later
13 EMACSDIR= ${PREFIX}/share/${EMACS}
14 ## XEmacs
15 #EMACS = xemacs
16 #EMACSDIR= ${PREFIX}/lib/${EMACS}
17 ## Meadow (Sample)
18 #EMACS = meadow
19 #EMACSDIR = c:/usr/local/meadow
20 ## Cocoa(or Carbon)Emacs on Darwin (Sample)
21 #EMACS = /Applications/Emacs.app/Contents/MacOS/Emacs
22 #PREFIX = /Applications/Emacs.app/Contents/Resources
23 #EMACSDIR = ${PREFIX}
25 LISPDIR = ${EMACSDIR}/site-lisp/yatex
26 # LISPDIR = ${EMACSDIR}/site-packages/lisp/yatex
27 DOCDIR = ${LISPDIR}/docs
28 HELPDIR = ${LISPDIR}/help
29 INFODIR = ${PREFIX}/share/info
31 TAR = tar
32 INSTALL = install -c -m 444
33 MKDIR = mkdir -p
34 INSTINFO= install-info
37 # Comment out below if you are using Emacs Windows(meadow, etc)
38 GEO = -geometry 80x20+0+0
40 ###################
41 # Do not edit below
42 ###################
43 # make install to install YaTeX into public space
44 # make ajimi to feel taste
45 # make ajimi-nw same as above, but -nw mode
46 # make package to create package for relase
47 # make yahtmlpack to create package for relase
48 # make clean to delete all producted files
49 # make ci to check in all
50 # make co to check out all
51 MVER = 1.78
52 LISP = ${LISP18} ${LISP19} ${LISP23}
53 YAHTML = yahtml.el
54 COMMON = yatexlib.el yatexprc.el
55 LISP18 = comment.el yatex.el yatexadd.el yatexgen.el yatexenv.el \
56 ${COMMON} \
57 yatexmth.el yatexhks.el yatexhlp.el \
58 yatexm-o.el yatexsec.el yatexhie.el yatexpkg.el ${YAHTML}
59 LISP19 = yatex19.el
60 LISP23 = yatex23.el
61 DOCS = ${DOCSRC} ${DOCOBJ} ${NEWS}
62 NEWS = yatex.new
63 DOCHTML = docs/htmlqa docs/htmlqa.eng docs/yahtmlj.tex docs/yahtmle.tex
64 DOCSRC = docs/yatexj.tex docs/yatexe.tex \
65 docs/yatex.ref docs/yatexref.eng \
66 docs/yatexadd.doc docs/yatexgen.doc \
67 docs/qanda docs/qanda.eng ${DOCHTML}
68 DOCOBJ = docs/yatexj docs/yatexe docs/yahtmlj docs/yahtmle
69 HELP = help/YATEXHLP.jp help/YATEXHLP.eng
70 MANIFEST= manifest
71 EXTRA = dir install 00readme makefile readme.meadow.j newpage.rb
72 DISTRIB = ${EXTRA} ${LISP} ${DOCS} ${MANIFEST} ${HELP}
73 RCSFILE = ${LISP} ${NEWS} ${DOCSRC} ${HELP}
74 YAHTMLLISP = ${YAHTML} ${COMMON}
75 YAHTMLDIST = ${YAHTMLLISP} install 00readme makefile newpage.rb
76 PACK = `ls ${DISTRIB}`
77 TMPDIR = /tmp
78 VERSION = `head -20 yatex.el|awk -F'"' '/revision/{print $$2}'`
79 PACKDIR = ${TMPDIR}/yatex${VERSION}
81 all:
82 @echo "Edit this makefile first."
83 @echo 'Type "make install" to install YaTeX.'
84 @echo 'Type "make install-yahtml" to install yahtml.'
85 @echo 'If you cling to elc files. type "make elc" before make install'
86 # @echo "If you don't use X-clinet of Emacs,"
87 # @echo 'type "make install-nw" instead.'
89 install: install-real install-message
90 #install-yahtml: bytecompile-yahtml
91 install-yahtml:
92 [ -d ${LISPDIR} ] || mkdir ${LISPDIR}
93 for f in *.el; do \
94 rm -f ${LISPDIR}/$${f}c; \
95 done
97 ${INSTALL} *.el* ${LISPDIR}
99 install-real:
100 [ -d ${LISPDIR} ] || ${MKDIR} ${LISPDIR}
101 [ -d ${HELPDIR} ] || ${MKDIR} ${HELPDIR}
102 [ -d ${DOCDIR} ] || ${MKDIR} ${DOCDIR}
103 [ -d ${INFODIR} ] || ${MKDIR} ${INFODIR}
104 for f in *.el; do \
105 rm -f ${LISPDIR}/$${f}c; \
106 done
107 ${INSTALL} *.el* ${NEWS} ${LISPDIR}
108 ${INSTALL} ${DOCSRC} ${DOCDIR}
109 ${INSTALL} ${DOCOBJ} ${INFODIR}
110 ${INSTALL} ${HELP} ${HELPDIR}
112 install-message:
113 @echo "--------------------------------"
114 @echo "If you have install-info command, type 'make install-info'."
115 @echo "If not, add next lines into your site's info dir manually."
116 @cat dir
117 @echo "--------------------------------"
118 @echo "=== INSTALLATION DONE ==="
119 @echo " You might need to add these expression below to your ~/.emacs"
120 @echo " 完了. ~/.emacs 等に以下を追加する必要があるかもしれません."
121 @echo
122 @echo ";;; ------ Startup definitions for YaTeX ------ ;;;"
123 @make show-init
124 @echo ";;; ------------------------------------------- ;;;"
125 @echo
126 @echo " To get elisp above again, call make command as below."
127 @echo " 上記elispを再度得るには以下のようにmakeを起動してください."
128 @echo " % make $${PREFIX:+PREFIX=$$PREFIX }show-init"
130 install-info:
131 for f in ${DOCOBJ}; do \
132 b=`basename $$f | sed 's,/.*,,'`; \
133 ${INSTINFO} --entry="`grep $$b dir`" --section=TeX \
134 --section=Emacs $${f} ${INFODIR}/dir; \
135 done
137 show-init:
138 @printf '%s\n%s\n%s\n%s\n' \
139 '(setq auto-mode-alist' \
140 " (cons (cons \"\\.tex$$\" 'yatex-mode) auto-mode-alist))" \
141 "(autoload 'yatex-mode \"yatex\" \"Yet Another LaTeX mode\" t)" \
142 "(add-to-list 'load-path \"${LISPDIR}\")"
143 @printf '(setq tex-command "%s")%s\n' \
144 `CMDS='platex pdflatex ptex2pdf lualatex' DFLT=latex \
145 make search-cmd`
146 @printf '(setq dvi2-command "%s")%s\n' \
147 `CMDS='pxdvi xdvik kxdvi dviout texworks' DFLT=xdvi \
148 make search-cmd`
149 @printf '(setq tex-pdfview-command "%s")%s\n' \
150 `CMDS='evince mupdf xpdf kpdf texworks sumatrapdf' \
151 DFLT=acroread \
152 make search-cmd`
154 show-init2:
155 @make LISPDIR=$$PWD show-init
157 search-cmd:
158 @for f in $$CMDS; do \
159 type $$f >/dev/null 2>&1 && echo $$f && exit 0; done; echo $$DFLT
161 install-nw: bytecompile-nw install-real
163 elc: bytecompile
165 bytecompile: lp
166 if [ "$$DISPLAY"x = ""x ]; then \
167 echo "Set DISPLAY environment variable!!"; exit 1; fi
168 ${EMACS} -q ${GEO} -l ./yatexlib.el -e bcf-and-exit ${LISP}
170 bytecompile-nw: lp1
171 ${EMACS} -batch -l ./yatexlib.el -e batch-byte-compile ${LISP18}
173 bytecompile-yahtml:
174 if [ "$$DISPLAY"x = ""x ]; then \
175 echo "Set DISPLAY environment variable!!"; exit 1; fi
176 ${EMACS} -q -g 80x20+0+0 -l ./yatexlib.el -e bcf-and-exit ${YAHTMLLISP}
178 lp:
179 echo '(setq load-path (cons "." load-path))' > lp.el
180 echo '(load-file "./yatexlib.el")' >>lp.el
182 lp1: lp
183 echo '(load-file "./yatex.el")' >>lp.el
184 echo '(load-file "./comment.el")' >>lp.el
186 lp2:
187 echo '(setq load-path (cons "'`pwd`'" load-path))' >>lp.el
188 echo '(setq auto-mode-alist' >>lp.el
189 echo '(cons (cons "\\.tex" '"'yatex-mode) auto-mode-alist))" >>lp.el
190 echo '(load-library "yatex")' >>lp.el
192 ajimi: lp lp2
193 ${EMACS} -l ./lp.el -e yatex-mode
195 ajimi-nw: lp lp2
196 ${EMACS} -nw -l ./lp.el -e yatex-mode
198 clean:
199 rm -f *.elc *~ lp.el
201 info: docs/yatexj docs/yatexe docs/yahtmlj docs/yahtmle
203 docs/yatexj: docs/yatexj.tex
204 (cd docs; ${EMACS} -batch -l ../yatexlib.el -e tfb-and-exit yatexj.tex)
206 docs/yatexe: docs/yatexe.tex
207 (cd docs; ${EMACS} -batch -l ../yatexlib.el -e tfb-and-exit yatexe.tex)
209 docs/yahtmlj: docs/yahtmlj.tex
210 (cd docs;${EMACS} -batch -l ../yatexlib.el -e tfb-and-exit yahtmlj.tex)
212 docs/yahtmle: docs/yahtmle.tex
213 (cd docs;${EMACS} -batch -l ../yatexlib.el -e tfb-and-exit yahtmle.tex)
215 package: info
216 @-mkdir ${PACKDIR}
217 @tar cf - ${PACK} | (cd ${PACKDIR}; tar xf -)
218 ( version=${VERSION}; cd ${TMPDIR}; \
219 ${TAR} vzcf ${TMPDIR}/yatex$$version.tar.gz yatex$$version)
221 yahtmlpack:
222 @-mkdir ${PACKDIR}
223 @tar cf - ${YAHTMLDIST} | (cd ${PACKDIR}; tar xf -)
224 ( version=${VERSION}; cd ${TMPDIR}; \
225 ${TAR} vzcf ${TMPDIR}/yahtml$$version.tar.gz yatex$$version)
227 ci:
228 ci -r${VERSION} -sRel -f ${RCSFILE}
229 ci -u${VERSION} makefile 00readme
231 co:
232 co ${RCSFILE}
234 co-l:
235 co -l ${RCSFILE}
237 tci:
238 ci -l${VERSION}.0 -Ncurrent ${RCSFILE} makefile
240 dostci:
241 ci -l${MVER}.0 -Ncurrent @rcsfile
243 gohome:
244 zip -u -r /com/okoma/yuuji/tmp/dosconv/yatex.zip . \
245 -x '*RCS/*' -x 'texinfo/*'
247 RSYNCDIR = ${HOME}/http/yatex/rsync/yatex
248 #sync:
249 # @-mkdir ${PACKDIR}
250 # @tar cf - ${PACK} | (cd ${PACKDIR}; tar xf -)
251 # syncdir -A -x CVS ${PACKDIR} ${RSYNCDIR}
252 # (cd ${RSYNCDIR}; cvs ci -m '')
253 # rm -rf ${PACKDIR}