unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
blob 03da0f79c398349664cf564243ac3025b7f3ed79 5248 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
167
168
169
170
171
172
173
174
175
 
### @configure_input@

# Copyright (C) 1997-2023 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@
top_srcdir = @top_srcdir@

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

EXEEXT = @EXEEXT@

SMALL_JA_DIC = @SMALL_JA_DIC@
JA_DIC_NO_REDUCTION_OPTION = --no-reduction
ifeq ($(SMALL_JA_DIC), yes)
	JA_DIC_NO_REDUCTION_OPTION =
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 "(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

# This is used to support regeneration of ja-dic when the SMALL_JA_DIC
# option is flipped by the configure-time option.
small-ja-dic-option: ../config.status
	$(AM_V_GEN)if test -f ${leimdir}/ja-dic/ja-dic.el; then \
	  sed -n "/small ja-dic option: $(SMALL_JA_DIC)/p" \
	    ${leimdir}/ja-dic/ja-dic.el > $@.$$$$ && \
	  ${top_srcdir}/build-aux/move-if-change $@.$$$$ $@; \
	else echo \
	  ";; Generated with small ja-dic option: $(SMALL_JA_DIC)" > $@; fi

.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 small-ja-dic-option
	$(AM_V_GEN)$(RUN_EMACS) -batch -l ja-dic-cnv \
	  -f batch-skkdic-convert -dir "$(leimdir)/ja-dic" $(JA_DIC_NO_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 03da0f7 ...
found 03da0f7 in https://yhetil.org/emacs-bugs/837coh5no9.fsf@gnu.org/
found 4c6c317 in https://git.savannah.gnu.org/cgit/emacs.git
preparing index
index prepared:
100644 4c6c3179283dee05292e93f14dad98dc9686e39c	leim/Makefile.in

applying [1/1] https://yhetil.org/emacs-bugs/837coh5no9.fsf@gnu.org/
diff --git a/leim/Makefile.in b/leim/Makefile.in
index 4c6c317..03da0f7 100644

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

index at:
100644 03da0f79c398349664cf564243ac3025b7f3ed79	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).