Mercurial > emacs
annotate admin/unidata/Makefile.in @ 101049:bca8dc2b0c55
*** empty log message ***
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Sat, 10 Jan 2009 12:34:20 +0000 |
parents | ce88a631c161 |
children | 1d1d5d9bd884 |
rev | line source |
---|---|
91461 | 1 # Makefile -- Makefile to generate character property tables. |
100971 | 2 # Copyright (C) 2005, 2006, 2007, 2008, 2009 |
91461 | 3 # National Institute of Advanced Industrial Science and Technology (AIST) |
4 # Registration Number H13PRO009 | |
5 # | |
6 # This file is part of GNU Emacs. | |
7 | |
94829
aeac1d771ae4
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91873
diff
changeset
|
8 # GNU Emacs is free software: you can redistribute it and/or modify |
91461 | 9 # it under the terms of the GNU General Public License as published by |
94829
aeac1d771ae4
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91873
diff
changeset
|
10 # the Free Software Foundation, either version 3 of the License, or |
aeac1d771ae4
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91873
diff
changeset
|
11 # (at your option) any later version. |
91461 | 12 |
13 # GNU Emacs is distributed in the hope that it will be useful, | |
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 # GNU General Public License for more details. | |
17 | |
18 # You should have received a copy of the GNU General Public License | |
94829
aeac1d771ae4
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91873
diff
changeset
|
19 # along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
aeac1d771ae4
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91873
diff
changeset
|
20 |
91461 | 21 |
22 EMACS = ../../src/emacs | |
23 DSTDIR = ../../lisp/international | |
24 RUNEMACS = ${EMACS} -Q --multibyte -batch | |
25 | |
26 all: ${DSTDIR}/charprop.el | |
27 | |
28 .el.elc: | |
29 ${RUNEMACS} -batch -f batch-byte-compile $< | |
30 | |
31 unidata.txt: UnicodeData.txt | |
91873
008f96c5e9bc
(unidata.txt): Don't use $<, it's non-portable in this context.
Eli Zaretskii <eliz@gnu.org>
parents:
91539
diff
changeset
|
32 sed -e 's/\([^;]*\);\(.*\)/(#x\1 "\2")/' -e 's/;/" "/g' < UnicodeData.txt > $@ |
91461 | 33 |
34 ${DSTDIR}/charprop.el: unidata-gen.elc unidata.txt | |
35 ELC=`/bin/pwd`/unidata-gen.elc; \ | |
36 DATA=`/bin/pwd`/unidata.txt; \ | |
37 cd ${DSTDIR}; \ | |
38 ${RUNEMACS} -batch --load $${ELC} -f unidata-gen-files $${DATA} | |
39 | |
40 install: charprop.el | |
41 cp charprop.el ${DSTDIR} | |
42 cp `sed -n 's/^;; FILE: //p' < charprop.el` ${DSTDIR} | |
43 | |
44 clean: | |
45 if test -f charprop.el; then \ | |
46 rm -f `sed -n 's/^;; FILE: //p' < charprop.el`; \ | |
47 fi | |
48 rm -f charprop.el unidata-gen.elc unidata.txt |