3 # Copyright (C) 2012-2013 Free Software Foundation, Inc.
5 # Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011
6 # National Institute of Advanced Industrial Science and Technology (AIST)
7 # Registration Number H13PRO009
9 # This file is part of GNU Emacs.
11 # GNU Emacs is free software: you can redistribute it and/or modify
12 # it under the terms of the GNU General Public License as published by
13 # the Free Software Foundation, either version 3 of the License, or
14 # (at your option) any later version.
16 # GNU Emacs is distributed in the hope that it will be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 # GNU General Public License for more details.
21 # You should have received a copy of the GNU General Public License
22 # along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
27 top_srcdir
= @top_srcdir@
28 top_builddir
= @top_builddir@
30 EMACS
= ${top_builddir}/src
/emacs
31 DSTDIR
= ${top_srcdir}/lisp
/international
32 emacs
= "${EMACS}" -batch
--no-site-file
--no-site-lisp
34 .PHONY
: all compile
install
36 all: ${DSTDIR}/charprop.el
39 ${emacs} -f batch-byte-compile
$<
41 unidata.txt
: ${srcdir}/UnicodeData.txt
42 sed
-e
's/\([^;]*\);\(.*\)/(#x\1 "\2")/' -e
's/;/" "/g' < ${srcdir}/UnicodeData.txt
> $@
44 compile
: ${srcdir}/unidata-gen.elc
46 ## Depend on .el rather than .elc so as not to needlessly rebuild
47 ## uni-*.el files just because .elc is missing.
48 ## Same for UnicodeData.txt v unidata.txt.
49 ${DSTDIR}/charprop.el
: ${srcdir}/unidata-gen.el
${srcdir}/UnicodeData.txt
50 ${MAKE} ${MFLAGS} compile unidata.txt EMACS
="${EMACS}"
51 -if
[ -f
"$@" ]; then \
52 cd
${DSTDIR} && chmod
+w charprop.el
`sed -n 's/^;; FILE: //p' < charprop.el`; \
54 ${emacs} -L
${srcdir} -l unidata-gen
-f unidata-gen-files \
57 ## Like the above, but generate in PWD rather than lisp/international.
58 charprop.el
: ${srcdir}/unidata-gen.elc unidata.txt
59 ${emacs} -L
${srcdir} -l unidata-gen
-f unidata-gen-files \
62 .PHONY
: clean bootstrap-clean
distclean maintainer-clean extraclean
65 cp charprop.el
${DSTDIR}
66 cp
`sed -n 's/^;; FILE: //p' < charprop.el` ${DSTDIR}
69 if
test -f charprop.el
; then \
70 rm -f
`sed -n 's/^;; FILE: //p' < charprop.el`; \
72 rm -f charprop.el
${srcdir}/*.elc unidata.txt
74 bootstrap-clean
: clean
79 maintainer-clean
: distclean
81 ## Do not remove these files, even in a bootstrap, because they rarely
82 ## change and it slows down bootstrap (a tiny bit).
83 ## Cf leim/ja-dic (which is much slower).
85 if
test -f
${DSTDIR}/charprop.el
; then \
86 (cd
${DSTDIR} && rm -f
`sed -n 's/^;; FILE: //p' < charprop.el`); \
87 rm -f
${DSTDIR}/charprop.el
; \