aboutsummaryrefslogtreecommitdiffstats
path: root/admin/unidata
diff options
context:
space:
mode:
authorKenichi Handa <[email protected]>2005-05-10 02:35:10 +0000
committerKenichi Handa <[email protected]>2005-05-10 02:35:10 +0000
commit4c452d71b683d94c6f989a7dab957eab943f2b12 (patch)
tree15588ce65ecc47684788318fd548c64ff57edfa6 /admin/unidata
parent0c98802f165db9dd4c768682a5b22cd8713fa40f (diff)
*** empty log message ***
Diffstat (limited to 'admin/unidata')
-rw-r--r--admin/unidata/Makefile11
1 files changed, 7 insertions, 4 deletions
diff --git a/admin/unidata/Makefile b/admin/unidata/Makefile
index 1d1c41464d..b14c299465 100644
--- a/admin/unidata/Makefile
+++ b/admin/unidata/Makefile
@@ -20,16 +20,19 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
-EMACS = ../../src/emacs
+TEMACS = ../../src/temacs
DSTDIR = ../../lisp/international
-RUNEMACS = ${EMACS} -q --no-site-file --multibyte -batch
+RUNEMACS = ${TEMACS} -Q --multibyte -batch
all: charprop.el
unidata-gen.elc: unidata-gen.el
${RUNEMACS} -f batch-byte-compile ./unidata-gen.el
-charprop.el: unidata-gen.elc UnicodeData.txt
+unidata.txt: UnicodeData.txt
+ sed -e 's/\([^;]*\);\(.*\)/(#x\1 "\2")/' -e 's/;/" "/g' < $< > $@
+
+charprop.el: unidata-gen.elc unidata.txt
${RUNEMACS} -l ./unidata-gen.elc -f unidata-gen-files
install: charprop.el
@@ -40,4 +43,4 @@ clean:
if test -f charprop.el; then \
rm -f `sed -n 's/^;; FILE: //p' < charprop.el`; \
fi
- rm -f charprop.el unidata-gen.elc
+ rm -f charprop.el unidata-gen.elc unidata.txt