unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
blob a256ca539bf96692bf4a5fd67f3e1723ca3db595 4822 bytes (raw)
name: leim/Makefile.in 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
 
### @configure_input@

# Copyright (C) 1997-2022 Free Software Foundation, Inc.
# Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
#   2006, 2007, 2008, 2009, 2010, 2011
#   National Institute of Advanced Industrial Science and Technology (AIST)
#   Registration Number H14PRO021

# This file is part of GNU Emacs.

# GNU Emacs is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.

# GNU Emacs is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.

# You should have received a copy of the GNU General Public License
# along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.

SHELL = @SHELL@

# Here are the things that we expect ../configure to edit.
srcdir=@srcdir@
top_builddir = @top_builddir@

# Where the generated files go.
leimdir = ${srcdir}/../lisp/leim

EXEEXT = @EXEEXT@

SMALL_JA_DIC = @SMALL_JA_DIC@
JA_DIC_REDUCTION_OPTION =
ifeq ($(SMALL_JA_DIC), yes)
	JA_DIC_REDUCTION_OPTION = --with-reduction
endif

-include ${top_builddir}/src/verbose.mk

# Prevent any settings in the user environment causing problems.
unexport EMACSDATA EMACSDOC EMACSLOADPATH EMACSPATH

# Which Emacs to use to convert TIT files to Emacs Lisp files,
# and generate the file leim-list.el.
EMACS = ../src/emacs${EXEEXT}

# How to run Emacs.
RUN_EMACS = '$(EMACS)' -batch --no-site-file --no-site-lisp

MKDIR_P = @MKDIR_P@

# Files generated from TIT dictionaries for Chinese GB character set.
TIT_GB=\
	${leimdir}/quail/CCDOSPY.el	\
	${leimdir}/quail/Punct.el	\
	${leimdir}/quail/QJ.el		\
	${leimdir}/quail/SW.el		\
	${leimdir}/quail/TONEPY.el

# Files generated from TIT dictionaries for Chinese BIG5 character set.
TIT_BIG5=\
	${leimdir}/quail/4Corner.el	\
	${leimdir}/quail/ARRAY30.el	\
	${leimdir}/quail/ECDICT.el	\
	${leimdir}/quail/ETZY.el	\
	${leimdir}/quail/Punct-b5.el	\
	${leimdir}/quail/PY-b5.el	\
	${leimdir}/quail/QJ-b5.el	\
	${leimdir}/quail/ZOZY.el

MISC= \
	${leimdir}/quail/tsang-b5.el	\
	${leimdir}/quail/quick-b5.el	\
	${leimdir}/quail/tsang-cns.el	\
	${leimdir}/quail/quick-cns.el	\
	${leimdir}/quail/PY.el		\
	${leimdir}/quail/ZIRANMA.el	\
	${leimdir}/quail/CTLau.el	\
	${leimdir}/quail/CTLau-b5.el    \
	${srcdir}/../lisp/language/pinyin.el

## All the generated .el files.
TIT_MISC = ${TIT_GB} ${TIT_BIG5} ${MISC}


all: ${leimdir}/leim-list.el
.PHONY: all


## Ensure the output directory exists.
${TIT_MISC}: | ${leimdir}/quail

${leimdir}/quail ${leimdir}/ja-dic:
	${MKDIR_P} $@


## All of TIT_GB and TIT_BIG5.
${leimdir}/quail/%.el: ${srcdir}/CXTERM-DIC/%.tit
	$(AM_V_GEN)${RUN_EMACS} -l titdic-cnv \
	  -f batch-titdic-convert -dir ${leimdir}/quail $<


misc_convert = $(AM_V_GEN)${RUN_EMACS} \
  -l titdic-cnv -f batch-miscdic-convert -dir ${leimdir}/quail

## CTLau.el, CTLau-b5.el.
${leimdir}/quail/CT%.el: ${srcdir}/MISC-DIC/CT%.html
	${misc_convert} $<

${leimdir}/quail/PY.el: ${srcdir}/MISC-DIC/pinyin.map
	${misc_convert} $<

${leimdir}/quail/ZIRANMA.el: ${srcdir}/MISC-DIC/ziranma.cin
	${misc_convert} $<

## Processing cangjie-table.b5 and cangjie-table.cns generates two files
## in each case.
${leimdir}/quail/tsang-%.el ${leimdir}/quail/quick-%.el: ${srcdir}/MISC-DIC/cangjie-table.%
	${misc_convert} $<


.PHONY: leim-list.el
leim-list.el: ${leimdir}/leim-list.el

${leimdir}/leim-list.el: ${srcdir}/leim-ext.el ${TIT_MISC}
	$(AM_V_GEN)rm -f $@
	$(AM_V_at)${RUN_EMACS} -l international/quail \
	  --eval "(setq max-specpdl-size 5000)" \
	  --eval "(update-leim-list-file (unmsys--file-name \"${leimdir}\"))"
	$(AM_V_at)sed -n -e '/^[^;]/p' -e 's/^;\(;*\)inc /;\1 /p' < $< >> $@


${leimdir}/ja-dic/ja-dic.el: | $(leimdir)/ja-dic

.PHONY: generate-ja-dic
generate-ja-dic: ${leimdir}/ja-dic/ja-dic.el
${leimdir}/ja-dic/ja-dic.el: $(srcdir)/SKK-DIC/SKK-JISYO.L
	$(AM_V_GEN)$(RUN_EMACS) -batch -l ja-dic-cnv \
	  --eval "(setq max-specpdl-size 5000)" \
	  -f batch-skkdic-convert -dir "$(leimdir)/ja-dic" $(JA_DIC_REDUCTION_OPTION) "$<"

${srcdir}/../lisp/language/pinyin.el: ${srcdir}/MISC-DIC/pinyin.map
	$(AM_V_GEN)${RUN_EMACS} -l titdic-cnv -f pinyin-convert $< $@


.PHONY: bootstrap-clean distclean maintainer-clean gen-clean

## Perhaps this should run gen-clean.
bootstrap-clean:
	rm -f ${TIT_MISC} ${leimdir}/leim-list.el

distclean:
	rm -f Makefile

maintainer-clean: gen-clean distclean

## ja-dic rarely changes and is slow to regenerate, and tends to be a
## bottleneck in parallel builds.
gen-clean:
	rm -f ${TIT_MISC} ${leimdir}/leim-list.el
	rm -rf ${leimdir}/ja-dic

### Makefile.in ends here

debug log:

solving a256ca539b ...
found a256ca539b in https://yhetil.org/emacs-devel/87v8td710c.fsf@taiju.info/
found 3b4216c0b8 in https://git.savannah.gnu.org/cgit/emacs.git
preparing index
index prepared:
100644 3b4216c0b822681d1c6a1c24ebb7392caaaa8ad4	leim/Makefile.in

applying [1/1] https://yhetil.org/emacs-devel/87v8td710c.fsf@taiju.info/
diff --git a/leim/Makefile.in b/leim/Makefile.in
index 3b4216c0b8..a256ca539b 100644

Checking patch leim/Makefile.in...
Applied patch leim/Makefile.in cleanly.

index at:
100644 a256ca539bf96692bf4a5fd67f3e1723ca3db595	leim/Makefile.in

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).