emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Dependencies in leim/Makefile.in


From: Kenichi Handa
Subject: Re: Dependencies in leim/Makefile.in
Date: Sat, 1 May 2004 14:51:58 +0900 (JST)
User-agent: SEMI/1.14.3 (Ushinoya) FLIM/1.14.2 (Yagi-Nishiguchi) APEL/10.2 Emacs/21.3 (sparc-sun-solaris2.6) MULE/5.0 (SAKAKI)

In article <address@hidden>, Eli Zaretskii <address@hidden> 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
address@hidden


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 via email to

[Prev in Thread] Current Thread [Next in Thread]