]> code.delx.au - gnu-emacs/blobdiff - leim/Makefile.in
Bump version to 24.5 for the release-candidate
[gnu-emacs] / leim / Makefile.in
index 21561a357d154b94586844f8bcd7891048d1f802..608930223e0a905429eb57a02a86c6fd52b5ba8f 100644 (file)
@@ -1,6 +1,6 @@
-# Makefile for leim subdirectory in GNU Emacs.
+### @configure_input@
 
-# Copyright (C) 1997-2012 Free Software Foundation, Inc.
+# Copyright (C) 1997-2015 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)
 # You should have received a copy of the GNU General Public License
 # along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
 
-
-# Avoid trouble on systems where the `SHELL' variable might be
-# inherited from the environment.
-SHELL = /bin/sh
+SHELL = @SHELL@
 
 # Here are the things that we expect ../configure to edit.
-version=@version@
-prefix=@prefix@
-datarootdir=@datarootdir@
-datadir=@datadir@
 srcdir=@srcdir@
-ns_appresdir=@ns_appresdir@
-
-# Where to install LEIM files.
-INSTALLDIR=$(DESTDIR)${datadir}/emacs/${version}/leim
 
-GZIP_PROG = @GZIP_PROG@
+# Where the generated files go.
+leimdir = ${srcdir}/../lisp/leim
 
 # Which Emacs to use to convert TIT files to Emacs Lisp files,
-# byte-compile Emacs Lisp files, and generate the file leim-list.el.
+# and generate the file leim-list.el.
 EMACS = ../src/emacs
 
-buildlisppath=${srcdir}/../lisp
-
 # How to run Emacs.
-RUN_EMACS = EMACSLOADPATH=$(buildlisppath) LC_ALL=C \
-       ${EMACS} -batch --no-site-file --no-site-lisp
+# Prevent any setting of EMACSLOADPATH in user environment causing problems.
+RUN_EMACS = EMACSLOADPATH= '$(EMACS)' -batch --no-site-file --no-site-lisp
 
-# Subdirectories to be made if ${srcdir} is different from the current
-# directory.
-SUBDIRS=quail
+MKDIR_P = @MKDIR_P@
 
 # Files generated from TIT dictionaries for Chinese GB character set.
 TIT_GB=\
-       quail/CCDOSPY.el        \
-       quail/Punct.el          \
-       quail/QJ.el             \
-       quail/SW.el             \
-       quail/TONEPY.el
+       ${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=\
-       quail/4Corner.el        \
-       quail/ARRAY30.el        \
-       quail/ECDICT.el \
-       quail/ETZY.el           \
-       quail/Punct-b5.el       \
-       quail/PY-b5.el          \
-       quail/QJ-b5.el          \
-       quail/ZOZY.el
+       ${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
 
 CHINESE_TIT=${TIT_GB} ${TIT_BIG5}
 
 MISC= \
-       quail/tsang-b5.el       \
-       quail/quick-b5.el       \
-       quail/tsang-cns.el      \
-       quail/quick-cns.el      \
-       quail/PY.el             \
-       quail/ZIRANMA.el        \
-       quail/CTLau.el          \
-       quail/CTLau-b5.el
+       ${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
 
 ## The generated .el files.
 TIT_MISC=${CHINESE_TIT} ${MISC}
 
-.SUFFIXES: .elc .el
-
-.el.elc:
-       @echo Compiling $<
-       @${RUN_EMACS} -l ${buildlisppath}/international/quail -f batch-byte-compile $<
-
-all: ${SUBDIRS} leim-list.el compile-main
-
-${SUBDIRS}:
-       mkdir $@
-       touch stamp-subdir
+all: ${leimdir}/leim-list.el ${leimdir}/ja-dic/ja-dic.el
+.PHONY: all
 
 TIT_SOURCES= \
        ${srcdir}/CXTERM-DIC/4Corner.tit \
@@ -117,12 +94,19 @@ TIT_SOURCES= \
 ${CHINESE_TIT}: changed.tit
        @true
 
-## FIXME remove subdirs if poss - time-stamping.
-## Emacs should make the directory if it does not exist.
-changed.tit: ${SUBDIRS} ${TIT_SOURCES}
-       ${RUN_EMACS} -l ${buildlisppath}/international/titdic-cnv \
-         -f batch-titdic-convert -dir quail ${srcdir}/CXTERM-DIC; \
-         echo "changed" > $@
+## The changed.* files act to serialize this part of the build.
+## A single Emacs invocation creates all the CHINESE_TIT files.
+## Otherwise in a parallel build multiple Emacs instances could
+## interfere with each other.  If we used GNU make we could probably
+## parallelize this without the need for an explicit rule for each
+## file.  Something like the pattern rule:
+## quail/%.el: CXTERM-DIC/%.tit
+## It doesn't seem possible to do this with VPATH and suffix rules.
+changed.tit: ${TIT_SOURCES}
+       @${MKDIR_P} ${leimdir}/quail
+       ${RUN_EMACS} -l titdic-cnv \
+         -f batch-titdic-convert -dir ${leimdir}/quail ${srcdir}/CXTERM-DIC
+       echo "changed" > $@
 
 MISC_SOURCES= \
        ${srcdir}/MISC-DIC/CTLau-b5.html \
@@ -135,113 +119,42 @@ MISC_SOURCES= \
 ${MISC}: changed.misc
        @true
 
-changed.misc: ${SUBDIRS} ${MISC_SOURCES}
-       ${RUN_EMACS} -l ${buildlisppath}/international/titdic-cnv \
-         -f batch-miscdic-convert -dir quail ${srcdir}/MISC-DIC; \
-         echo "changed" > $@
-
-leim-list.el: ${SUBDIRS} ${TIT_MISC} ${srcdir}/leim-ext.el
-       rm -f leim-list.el
-       if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \
-         ${RUN_EMACS} -l ${buildlisppath}/international/quail \
-           --eval "(update-leim-list-file \".\")" ; \
-       else \
-         ${RUN_EMACS} -l ${buildlisppath}/international/quail \
-           --eval "(update-leim-list-file \".\" \"${srcdir}\")" ; \
-       fi
-       sed -n '/^[^;]/ p' < ${srcdir}/leim-ext.el >> $@
-
-## Following adapted from lisp/Makefile.in.
-setwins=wins="${srcdir}/ja-dic quail"; \
-       [ `cd ${srcdir} && /bin/pwd` != `/bin/pwd` ] && \
-       wins="$$wins ${srcdir}/quail"
-
-.PHONY: compile-targets
-# TARGETS is set dynamically in the recursive call from `compile-main'.
-compile-targets: $(TARGETS)
-
-# Compile all the Elisp files that need it.  Beware: it approximates
-# `no-byte-compile', so watch out for false-positives!
-compile-main: ${TIT_MISC}
-       @($(setwins); \
-       els=`echo "$$wins " | sed -e 's| |/*.el |g'`; \
-       for el in $$els; do \
-         test -f $$el || continue; \
-         test ! -f $${el}c && GREP_OPTIONS= grep '^;.*no-byte-compile: t' $$el > /dev/null && continue; \
-         echo "$${el}c"; \
-       done | xargs echo) | \
-       while read chunk; do \
-         $(MAKE) $(MFLAGS) compile-targets EMACS="$(EMACS)" TARGETS="$$chunk"; \
-       done
-
-MV_DIRS = for i in $$dir; do rm -fr `basename "$$i"` ; mv "$$i" . ; done
-
-install: all
-       if [ ! -d ${INSTALLDIR} ] ; then \
-          umask 022; ${srcdir}/../build-aux/install-sh -d ${INSTALLDIR}; \
-       else true; fi
-       if [ x`(cd ${INSTALLDIR} && /bin/pwd)` != x`(/bin/pwd)` ] ; then \
-         rm -f ${INSTALLDIR}/leim-list.el; \
-         rm -rf ${INSTALLDIR}/quail ${INSTALLDIR}/ja-dic ; \
-         echo "Copying leim files to ${INSTALLDIR} ..." ; \
-         if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \
-           tar -chf - leim-list.el quail ja-dic \
-               | (cd ${INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\
-         else \
-           tar -chf - leim-list.el quail \
-               | (cd ${INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\
-           cd ${srcdir}; \
-           tar -chf - quail/* ja-dic \
-               | (cd ${INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\
-         fi; \
-         rm -f  ${INSTALLDIR}/.gitignore ${INSTALLDIR}/*/.gitignore; \
-         rm -f  ${INSTALLDIR}/.arch-inventory ${INSTALLDIR}/*/.arch-inventory; \
-         rm -f  ${INSTALLDIR}/\#*        ${INSTALLDIR}/*/\#* ; \
-         rm -f  ${INSTALLDIR}/.\#*       ${INSTALLDIR}/*/.\#* ; \
-         rm -f  ${INSTALLDIR}/*~         ${INSTALLDIR}/*/*~ ; \
-         rm -f  ${INSTALLDIR}/*.orig     ${INSTALLDIR}/*/*.orig ; \
-       else true; fi
-       -unset CDPATH; \
-       if [ -n "${GZIP_PROG}" ]; \
-       then \
-          echo "Compressing *.el ..." ; \
-          (cd ${INSTALLDIR}; for f in `find . -name "*.elc" -print`; do \
-               ${GZIP_PROG} -9n `echo $$f|sed 's/.elc$$/.el/'` ; \
-           done) \
-       else true; fi
-       -chmod -R a+r ${INSTALLDIR}
-       for installuser in $${LOGNAME} $${USERNAME} $${USER} \
-         `id -un 2> /dev/null`; do \
-         [ -n "$${installuser}" ] && break ; \
-       done ; \
-       find ${INSTALLDIR} -exec chown $${installuser} '{}' ';'
-       if [ "${ns_appresdir}" != "" ]; then \
-         ( cd ${ns_appresdir} ; \
-           if test -d share/emacs ; then dir=share/emacs/*/*; $(MV_DIRS); fi;\
-           rm -fr share ) ; \
-       else true ; fi
-
-clean mostlyclean:
-       rm -f ${TIT_MISC} ${TIT_MISC:.el=.elc} \
-               leim-list.el changed.tit changed.misc
-
-# The following target is needed because the `clean' target only removes
-# TIT-generated files and doesn't touch compiled Quail packages.  But
-# bootstrapping should not leave non-fresh .elc files behind.
-bootstrap-clean: clean
-       $(setwins); for w in $$wins; do rm -f $$w/*.elc; done
-
-distclean: clean
-       if test -f stamp-subdir; then rm -rf ${SUBDIRS} stamp-subdir; fi
+changed.misc: ${MISC_SOURCES}
+       @${MKDIR_P} ${leimdir}/quail
+       ${RUN_EMACS} -l titdic-cnv \
+         -f batch-miscdic-convert -dir ${leimdir}/quail ${srcdir}/MISC-DIC
+       echo "changed" > $@
+
+.PHONY: leim-list.el
+leim-list.el: ${leimdir}/leim-list.el
+
+${leimdir}/leim-list.el: ${TIT_MISC} ${srcdir}/leim-ext.el
+       rm -f $@
+       ${RUN_EMACS} -l international/quail \
+         --eval "(update-leim-list-file (unmsys--file-name \"${leimdir}\"))"
+       sed -n -e '/^[^;]/p' -e 's/^;\(;*\)inc /;\1 /p' < ${srcdir}/leim-ext.el >> $@
+
+${leimdir}/ja-dic/ja-dic.el: $(srcdir)/SKK-DIC/SKK-JISYO.L
+       @$(MKDIR_P) $(leimdir)/ja-dic
+       $(RUN_EMACS) -batch -l ja-dic-cnv \
+         -f batch-skkdic-convert -dir "$(leimdir)/ja-dic" \
+         "$(srcdir)/SKK-DIC/SKK-JISYO.L"
+
+.PHONY: bootstrap-clean distclean maintainer-clean extraclean
+
+bootstrap-clean:
+       rm -f ${TIT_MISC} ${leimdir}/leim-list.el changed.tit changed.misc
+
+distclean:
        rm -f Makefile
 
 maintainer-clean: distclean bootstrap-clean
 
-extraclean: maintainer-clean
-       -rm -f *~ \#* */*~ */\#*
-
-.PHONY: check-declare
+## We do not delete ja-dic, even in a bootstrap, because it rarely
+## changes and is slow to regenerate.
+## TODO? Could consider doing the same with TIT_MISC, though those
+## are much faster to generate.
+extraclean:
+       rm -rf ${leimdir}/ja-dic
 
-check-declare:
-       $(RUN_EMACS) -l $(buildlisppath)/emacs-lisp/check-declare \
-         --eval '(check-declare-directory "$(srcdir)")'
+### Makefile.in ends here