1# -*- Makefile -*- for leim subdirectory in GNU Emacs on the Microsoft W32 API.
2# Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
3#   Free Software Foundation, Inc.
4# Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
5#   National Institute of Advanced Industrial Science and Technology (AIST)
6#   Registration Number H14PRO021
7
8# This file is part of GNU Emacs.
9
10# GNU Emacs is free software; you can redistribute it and/or modify
11# it under the terms of the GNU General Public License as published by
12# the Free Software Foundation; either version 2, or (at your option)
13# any later version.
14#
15# GNU Emacs is distributed in the hope that it will be useful,
16# but WITHOUT ANY WARRANTY; without even the implied warranty of
17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18# GNU General Public License for more details.
19#
20# You should have received a copy of the GNU General Public License
21# along with GNU Emacs; see the file COPYING.  If not, write to the
22# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23# Boston, MA 02110-1301, USA.
24
25srcdir=.
26
27# Where to install LEIM files.
28INSTALLDIR=$(INSTALL_DIR)/leim
29
30# On Xenix and the IBM RS6000, double-dot gets screwed up.
31dot = .
32
33# Which Emacs to use to convert TIT files to Emacs Lisp files,
34# byte-compile Emacs Lisp files, and generate the file leim-list.el.
35BUILT_EMACS = $(THISDIR)/$(dot)$(dot)/src/$(BLD)/emacs.exe
36
37buildlisppath=$(CURDIR)/$(dot)$(dot)/lisp
38
39# How to run Emacs.
40RUN_EMACS = "$(BUILT_EMACS)" -batch --no-init-file --no-site-file --multibyte
41
42# Set EMACSLOADPATH correctly (already defined in environment).
43EMACSLOADPATH=$(buildlisppath)
44
45# Subdirectories to be made if $(srcdir) is different from the current
46# directory.
47SUBDIRS=quail
48
49# Files generated from TIT dictionaries for Chinese GB character set.
50TIT_GB=\
51	quail/CCDOSPY.elc	\
52	quail/Punct.elc		\
53	quail/QJ.elc		\
54	quail/SW.elc		\
55	quail/TONEPY.elc
56
57# Files generated from TIT dictionaries for Chinese BIG5 character set.
58TIT_BIG5=\
59	quail/4Corner.elc	\
60	quail/ARRAY30.elc	\
61	quail/ECDICT.elc	\
62	quail/ETZY.elc		\
63	quail/Punct-b5.elc	\
64	quail/PY-b5.elc		\
65	quail/QJ-b5.elc		\
66	quail/ZOZY.elc
67
68CHINESE_TIT=$(TIT_GB) $(TIT_BIG5)
69
70NON_TIT_GB=$(srcdir)/quail/py-punct.elc
71
72NON_TIT_BIG5=$(srcdir)/quail/pypunct-b5.elc
73
74CHINESE_NON_TIT=$(NON_TIT_GB) $(NON_TIT_BIG5)
75
76CHINESE_GB=$(TIT_GB) $(NON_TIT_GB)
77
78CHINESE_BIG5=$(TIT_BIG5) $(NON_TIT_BIG5)
79
80JAPANESE=$(srcdir)/quail/japanese.elc $(srcdir)/ja-dic/ja-dic.elc
81
82KOREAN=	$(srcdir)/quail/hangul.elc	\
83	$(srcdir)/quail/hangul3.elc	\
84	$(srcdir)/quail/hanja.elc	\
85	$(srcdir)/quail/hanja3.elc	\
86	$(srcdir)/quail/hanja-jis.elc	\
87	$(srcdir)/quail/symbol-ksc.elc
88
89THAI=$(srcdir)/quail/thai.elc
90
91VIETNAMESE=$(srcdir)/quail/viqr.elc $(srcdir)/quail/vntelex.elc
92
93LAO=$(srcdir)/quail/lao.elc $(srcdir)/quail/lrt.elc
94
95INDIAN=$(srcdir)/quail/indian.elc
96
97TIBETAN=$(srcdir)/quail/tibetan.elc
98
99LATIN=	$(srcdir)/quail/latin-pre.elc	\
100	$(srcdir)/quail/latin-post.elc	\
101	$(srcdir)/quail/latin-alt.elc	\
102	$(srcdir)/quail/latin-ltx.elc	\
103	$(srcdir)/quail/welsh.elc
104
105UNICODE=$(srcdir)/quail/sgml-input.elc	\
106	$(srcdir)/quail/rfc1345.elc	\
107	$(srcdir)/quail/uni-input.elc
108
109SLAVIC= \
110	$(srcdir)/quail/czech.elc \
111	$(srcdir)/quail/croatian.elc \
112	$(srcdir)/quail/slovak.elc
113
114GREEK=$(srcdir)/quail/greek.elc
115
116RUSSIAN=$(srcdir)/quail/cyrillic.elc $(srcdir)/quail/cyril-jis.elc
117
118MISC= \
119	$(srcdir)/quail/ethiopic.elc \
120	$(srcdir)/quail/ipa.elc \
121	$(srcdir)/quail/hebrew.elc \
122	$(srcdir)/quail/georgian.elc \
123	$(srcdir)/quail/sisheng.elc
124
125MISC_DIC=\
126	quail/tsang-b5.elc	\
127	quail/quick-b5.elc	\
128	quail/tsang-cns.elc	\
129	quail/quick-cns.elc	\
130	quail/PY.elc		\
131	quail/ZIRANMA.elc	\
132	quail/CTLau.elc		\
133	quail/CTLau-b5.elc
134
135CHINESE=$(CHINESE_GB) $(CHINESE_BIG5)
136EASTASIA=$(CHINESE) $(JAPANESE) $(KOREAN)
137ASIA=$(EASTASIA) $(THAI) $(VIETNAMESE) $(LAO) $(INDIAN) $(TIBETAN)
138EUROPEAN=$(LATIN) $(SLAVIC) $(GREEK) $(RUSSIAN)
139WORLD=$(ASIA) $(EUROPEAN) $(MISC) $(MISC_DIC) $(UNICODE)
140
141TIT=$(CHINESE_TIT)
142NON_TIT=$(CHINESE_NON_TIT) $(JAPANESE) $(KOREAN) $(EUROPEAN) $(MISC)
143
144.SUFFIXES: .elc .el
145
146.el.elc:
147	$(RUN_EMACS) -f batch-byte-compile $<
148
149all: $(BUILT_EMACS) $(SUBDIRS) $(WORLD) leim-list.el
150
151# To ensure that we can run Emacs.  This target is ignored (never
152# being hit) if a user changes default value of EMACS.
153$(dot)$(dot)/src/emacs:
154	cd ../src; $(MAKE) $(MFLAGS) emacs
155
156$(SUBDIRS):
157	mkdir "$@"
158	echo stamp>stamp-subdir
159
160# The rules which generate $(TIT) and ${MISC_DIC) files create them all
161# in one go.  So we need to prevent parallel execution for that target,
162# otherwise Emacs complains about files being locked.  .NOTPARALLEL is
163# for GNU Make, .NO_PARALLEL is for other Make's.
164.NOTPARALLEL: $(TIT) $(MISC_DIC)
165
166.NO_PARALLEL: $(TIT) $(MISC_DIC)
167
168# Rule to generate quail/*.el from CXTERM-DIC/*.tit.
169#
170# WARNING: Do NOT split the part inside $(ARGQUOTE)s into multiple lines as
171#          this can break with GNU Make 3.81 and later if sh.exe is used.
172$(TIT):
173	$(RUN_EMACS) -l $(buildlisppath)/international/titdic-cnv \
174	    --eval $(ARGQUOTE)(batch-titdic-convert t)$(ARGQUOTE) \
175	    -dir quail $(srcdir)/CXTERM-DIC
176	$(RUN_EMACS)  -l $(buildlisppath)/international/quail \
177	    -f batch-byte-compile $(TIT:.elc=.el)
178
179# Rule to generate quail/*.el from MISC_DIC/*.tit.
180$(MISC_DIC):
181	$(RUN_EMACS) -l $(buildlisppath)/international/titdic-cnv \
182	    -f batch-miscdic-convert -dir quail $(srcdir)/MISC-DIC
183	$(RUN_EMACS)  -l $(buildlisppath)/international/quail \
184	    -f batch-byte-compile $(MISC_DIC:.elc=.el)
185
186#
187# WARNING: Do NOT split the parts inside $(ARGQUOTE)s into multiple lines as
188#          this can break with GNU Make 3.81 and later if sh.exe is used.
189leim-list.el: $(SUBDIRS) $(WORLD) $(srcdir)/leim-ext.el
190	$(RUN_EMACS) -l $(buildlisppath)/international/quail \
191	    --eval $(ARGQUOTE)(update-leim-list-file $(DQUOTE).$(DQUOTE))$(ARGQUOTE)
192	$(RUN_EMACS) --eval $(ARGQUOTE)(w32-append-code-lines $(DQUOTE)$@$(DQUOTE) $(DQUOTE)$(srcdir)/leim-ext.el$(DQUOTE))$(ARGQUOTE)
193
194install: all
195	- mkdir "$(INSTALLDIR)"
196	- $(DEL) same-dir.tst
197	- $(DEL) $(INSTALL_DIR)/same-dir.tst
198	echo SameDirTest > $(INSTALL_DIR)/same-dir.tst
199	$(IFNOTSAMEDIR) $(CP) leim-list.el $(INSTALLDIR) $(ENDIF)
200	$(IFNOTSAMEDIR) $(CP_DIR) quail $(INSTALLDIR) $(ENDIF)
201	$(IFNOTSAMEDIR) $(CP_DIR) ja-dic $(INSTALLDIR) $(ENDIF)
202	- $(DEL) $(INSTALL_DIR)/same-dir.tst
203
204clean mostlyclean:
205	- $(FOREACH) $(TIT) $(FORDO) $(DEL) $(FORVAR) $(ENDFOR)
206	- $(FOREACH) $(MISC_DIC) $(FORDO) $(DEL) $(FORVAR) $(ENDFOR)
207	- $(FOREACH) $(TIT:.elc=.el) $(FORDO) $(DEL) $(FORVAR) $(ENDFOR)
208	- $(FOREACH) $(MISC_DIC:.elc=.el) $(FORDO) $(DEL) $(FORVAR) $(ENDFOR)
209	- $(DEL) leim-list.el
210
211distclean: clean
212	- $(DELTREE) $(SUBDIRS)
213	- $(DEL) stamp-subdir
214
215maintainer-clean: distclean
216	- $(FOREACH) $(WORLD) $(FORDO) $(DEL) $(FORVAR) $(ENDFOR)
217
218extraclean: maintainer-clean
219	- $(FOREACH) *~ "#*" $(FORDO) $(DEL) $(FORVAR) $(ENDFOR)
220