unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Kenichi Handa <handa@m17n.org>
Cc: emacs-devel@gnu.org
Subject: Re: Dependencies in leim/Makefile.in
Date: Sat, 1 May 2004 14:51:58 +0900 (JST)	[thread overview]
Message-ID: <200405010551.OAA04777@etlken.m17n.org> (raw)
In-Reply-To: <ufzanfhqi.fsf@gnu.org> (message from Eli Zaretskii on 29 Apr 2004 07:58:13 +0200)

In article <ufzanfhqi.fsf@gnu.org>, Eli Zaretskii <eliz@gnu.org> writes:
>>  With Gnu make, it seems that we can do:
>>  
>>  TIT-GB-SOURCE := $(TIT-GB:quail/%.elc=CXTERM-DIC/%.tit)
>>  
>>  But, is such a variable substitution generally available?

> One idea is to get rid of the prefix directory in the source file
> names (CXTERM-DIC in this case), by putting those directories into
> VPATH, and then use an implicit dependency ".tit.elc:" and leave it to
> Make to find the *.tit files.  (Yes, I know that VPATH is also
> unavailable in some flavors of Make, but I think it's more widespread
> than the feature you used above.)

> Even if no general solution is possible, we could use a GNU Make
> specific one; that way, at least users of GNU Make will have a better
> Makefile.

I've just installed the attached fix which takes the
different approach.  I gave up generating a list of TIT and
MISC-DIC sources, but could eliminate kludgy code for
avoiding parallel make problems.

I changed only leim/Makefile.in, and tested it only with GNU
Make.  I'd like to ask main maintainers of the other systems
to change makefile.nt and makefile.w32-in accordingly (and
test them).

---
Ken'ichi HANDA
handa@m17n.org


Index: Makefile.in
===================================================================
RCS file: /cvsroot/emacs/emacs/leim/Makefile.in,v
retrieving revision 1.58
retrieving revision 1.60
diff -u -c -r1.58 -r1.60
cvs server: conflicting specifications of output style
*** Makefile.in	1 Mar 2004 06:56:32 -0000	1.58
--- Makefile.in	1 May 2004 05:02:57 -0000	1.60
***************
*** 117,129 ****
  
  RUSSIAN=${srcdir}/quail/cyrillic.elc ${srcdir}/quail/cyril-jis.elc
  
! MISC= \
  	${srcdir}/quail/ethiopic.elc \
  	${srcdir}/quail/ipa.elc \
  	${srcdir}/quail/hebrew.elc \
  	${srcdir}/quail/georgian.elc
  
! MISC-DIC=\
  	quail/tsang-b5.elc	\
  	quail/quick-b5.elc	\
  	quail/tsang-cns.elc	\
--- 117,129 ----
  
  RUSSIAN=${srcdir}/quail/cyrillic.elc ${srcdir}/quail/cyril-jis.elc
  
! OTHERS= \
  	${srcdir}/quail/ethiopic.elc \
  	${srcdir}/quail/ipa.elc \
  	${srcdir}/quail/hebrew.elc \
  	${srcdir}/quail/georgian.elc
  
! MISC= \
  	quail/tsang-b5.elc	\
  	quail/quick-b5.elc	\
  	quail/tsang-cns.elc	\
***************
*** 137,153 ****
  EASTASIA=${CHINESE} ${JAPANESE} ${KOREAN}
  ASIA=${EASTASIA} ${THAI} ${VIETNAMESE} ${LAO} ${INDIAN} ${TIBETAN}
  EUROPEAN=${LATIN} ${SLAVIC} ${GREEK} ${RUSSIAN}
! WORLD=${ASIA} ${EUROPEAN} ${MISC} ${MISC-DIC} ${UNICODE}
  
! TIT=${CHINESE-TIT}
! NON-TIT=${CHINESE-NON-TIT} ${JAPANESE} ${KOREAN} ${EUROPEAN} ${MISC}
  
  .SUFFIXES: .elc .el
  
  .el.elc:
  	${RUN-EMACS} -f batch-byte-compile $<
  
! all: ${BUILT-EMACS} ${SUBDIRS} ${WORLD} leim-list.el
  
  # To ensure that we can run Emacs.  This target is ignored (never
  # being hit) if a user changes default value of EMACS.
--- 137,153 ----
  EASTASIA=${CHINESE} ${JAPANESE} ${KOREAN}
  ASIA=${EASTASIA} ${THAI} ${VIETNAMESE} ${LAO} ${INDIAN} ${TIBETAN}
  EUROPEAN=${LATIN} ${SLAVIC} ${GREEK} ${RUSSIAN}
! WORLD=${ASIA} ${EUROPEAN} ${OTHERS} ${MISC} ${UNICODE}
  
! TIT-MISC=${CHINESE-TIT} ${MISC}
! NON-TIT-MISC=${CHINESE-NON-TIT} ${JAPANESE} ${KOREAN} ${EUROPEAN} ${OTHERS}
  
  .SUFFIXES: .elc .el
  
  .el.elc:
  	${RUN-EMACS} -f batch-byte-compile $<
  
! all: ${BUILT-EMACS} ${SUBDIRS} leim-list.el
  
  # To ensure that we can run Emacs.  This target is ignored (never
  # being hit) if a user changes default value of EMACS.
***************
*** 158,195 ****
  	mkdir $@
  	touch stamp-subdir
  
! # The rules which generate ${TIT} and ${MISC-DIC} files create them all
! # in one go.  So we need to prevent parallel execution for that target,
! # otherwise Emacs complains about files being locked.  .NOTPARALLEL is
! # for GNU Make, .NO_PARALLEL is for other Make's.
! .NOTPARALLEL: ${TIT} ${MISC-DIC}
! 
! .NO_PARALLEL: ${TIT} ${MISC-DIC}
! 
! # Rule to generate quail/*.el from CXTERM-DIC/*.tit.
! # The "if [ -f $@ ]; then true; " part prevents parallel Make's
! # which don't honor .NOTPARALLEL, such as SGI's Make, from running
! # this rule many times, one each for every file it creates.
! ${TIT}:
! 	if [ -d quail ]; then true; else make quail; fi
! 	if [ -f $@ ]; then true; else \
! 	 ${RUN-EMACS} -l ${buildlisppath}/international/titdic-cnv \
! 	  --eval '(batch-titdic-convert t)' -dir quail ${srcdir}/CXTERM-DIC; fi
! 	if [ -f $@ ]; then true; else \
! 	 ${RUN-EMACS}  -l ${buildlisppath}/international/quail \
! 	  -f batch-byte-compile ${TIT:.elc=.el}; fi
! 
! # Rule to generate quail/*.el from MISC-DIC/*.
! ${MISC-DIC}:
! 	if [ -d quail ]; then true; else make quail; fi
! 	if [ -f $@ ]; then true; else \
! 	 ${RUN-EMACS} -l ${buildlisppath}/international/titdic-cnv \
! 	    -f batch-miscdic-convert -dir quail ${srcdir}/MISC-DIC; fi
! 	if [ -f $@ ]; then true; else \
! 	 ${RUN-EMACS} -l ${buildlisppath}/international/quail \
! 	  -f batch-byte-compile ${MISC-DIC:.elc=.el}; fi
! 
! leim-list.el: ${SUBDIRS} ${WORLD}
  	if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \
  	  ${RUN-EMACS} -l ${buildlisppath}/international/quail \
  	    --eval "(update-leim-list-file \".\")" ; \
--- 158,205 ----
  	mkdir $@
  	touch stamp-subdir
  
! TIT-SOURCES= \
! 	CXTERM-DIC/4Corner.tit \
! 	CXTERM-DIC/ARRAY30.tit \
! 	CXTERM-DIC/CCDOSPY.tit \
! 	CXTERM-DIC/ECDICT.tit \
! 	CXTERM-DIC/ETZY.tit \
! 	CXTERM-DIC/PY-b5.tit \
! 	CXTERM-DIC/Punct-b5.tit \
! 	CXTERM-DIC/Punct.tit \
! 	CXTERM-DIC/QJ-b5.tit \
! 	CXTERM-DIC/QJ.tit \
! 	CXTERM-DIC/SW.tit \
! 	CXTERM-DIC/TONEPY.tit \
! 	CXTERM-DIC/ZOZY.tit
! 
! changed.tit: ${TIT-SOURCES}
! 	echo "0" > $@
! 
! MISC-SOURCES= \
! 	MISC-DIC/CTLau-b5.html \
! 	MISC-DIC/CTLau.html \
! 	MISC-DIC/cangjie-table.b5 \
! 	MISC-DIC/cangjie-table.cns \
! 	MISC-DIC/pinyin.map \
! 	MISC-DIC/ziranma.cin
! 
! changed.misc: ${MISC-SOURCES}
! 	echo "0" > $@
! 
! leim-list.el: ${SUBDIRS} ${NON-TIT-MISC} changed.tit changed.misc
! 	if [ `(cat changed.tit)` = 0 ] ; then \
! 	  ${RUN-EMACS} -l ${buildlisppath}/international/titdic-cnv \
! 	    -f batch-titdic-convert -dir quail ${srcdir}/CXTERM-DIC; \
! 	  echo "1" > changed.tit; \
! 	else true; fi
! 	if [ `(cat changed.misc)` = 0 ] ; then \
! 	  ${RUN-EMACS} -l ${buildlisppath}/international/titdic-cnv \
! 	    -f batch-miscdic-convert -dir quail ${srcdir}/MISC-DIC; \
! 	  echo "1" > changed.misc; \
! 	else true; fi
! 	${RUN-EMACS}  -l ${buildlisppath}/international/quail \
! 	  -f batch-byte-compile-if-not-done ${TIT-MISC:.elc=.el}
  	if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \
  	  ${RUN-EMACS} -l ${buildlisppath}/international/quail \
  	    --eval "(update-leim-list-file \".\")" ; \
***************
*** 223,230 ****
  	-chmod -R a+r ${INSTALLDIR}
  
  clean mostlyclean:
! 	rm -f ${TIT} ${TIT:.elc=.el} ${MISC-DIC} ${MISC-DIC:.elc=.el} \
! 		leim-list.el
  
  distclean: clean
  	if test -f stamp-subdir; then rm -rf ${SUBDIRS} stamp-subdir; fi
--- 233,240 ----
  	-chmod -R a+r ${INSTALLDIR}
  
  clean mostlyclean:
! 	rm -f ${TIT-MISC} ${TIT-MISC:.elc=.el} \
! 		leim-list.el changed.tit changed.misc
  
  distclean: clean
  	if test -f stamp-subdir; then rm -rf ${SUBDIRS} stamp-subdir; fi

  reply	other threads:[~2004-05-01  5:51 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-04-26 12:05 Dependencies in leim/Makefile.in Eli Zaretskii
2004-04-29  1:42 ` Kenichi Handa
2004-04-29  5:58   ` Eli Zaretskii
2004-05-01  5:51     ` Kenichi Handa [this message]
  -- strict thread matches above, loose matches on Subject: below --
2004-05-04  1:27 Kenichi Handa

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200405010551.OAA04777@etlken.m17n.org \
    --to=handa@m17n.org \
    --cc=emacs-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).