X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=Makefile.in;h=da3ccb78fd813beed1a7c3c8ea005af4c9afcb07;hb=0a91e86c5cbe781dfc4b5120f72d4a7f873fcbf7;hp=70cb2225c3cf7741785c9b8f73edc772fb4c8e78;hpb=0847984da42c091a8d925f75237a948162d49edb;p=tamago-tsunagi%2Ftamago-tsunagi.git diff --git a/Makefile.in b/Makefile.in index 70cb222..da3ccb7 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,9 +1,10 @@ -# Makefile --- Makefile of EGG V4.0 +# Makefile --- Makefile of Tamago-tsunagi -# Copyright (C) 1999, 2000 Free Software Foundation, Inc +# Copyright (C) 1999, 2000, 2015 Free Software Foundation, Inc +# 2015 Mitsutoshi NAKANO +# 2015 ARAI Shun-ichi # Author: NIIBE Yutaka # TOMURA Satoru -# Maintaner: Satoru Tomura .SUFFIXES: SHELL = @SHELL@ @@ -22,6 +23,7 @@ lispdir = @lispdir@ #------------------------------------------------ prefix = @prefix@ +datarootdir= @datarootdir@ INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ @@ -35,7 +37,7 @@ INSTALL_INFO = install-info # ;; install files into the emacs site-lisp directory # ;; ex. /usr/local/share/emacs/site-lisp/egg -DEPS = -l $(top_srcdir)/docomp.el -l $(top_srcdir)/jisx0213.el +DEPS = -l $(top_srcdir)/docomp.el BATCHFLAGS = -batch -q -no-site-file -no-init-file ETCS = Makefile docomp.el \ @@ -52,10 +54,10 @@ TOPSRCS = \ egg-cnv.el \ egg-mlh.el \ egg-sim.el \ - egg-x0213.el \ menudiag.el \ its.el \ its-keydef.el \ + leim-list.el \ # EGGSRCS = \ @@ -65,15 +67,17 @@ EGGSRCS = \ egg/anthyipc.el egg/anthy.el # +AYNU = @HAVE_JISX0213@ its/aynu.el + ITSSRCS = \ its/ascii.el \ - its/aynu.el \ its/bixing.el \ its/erpin.el \ its/greek.el \ its/hankata.el \ its/hira.el \ its/jeonkak.el \ + its/greek.el \ its/pinyin.el \ its/hangul.el \ its/kata.el \ @@ -81,6 +85,8 @@ ITSSRCS = \ its/quanjiao.el \ its/zenkaku.el \ its/zhuyin.el \ + its/jiskana.el \ + ${AYNU} # ELCS = ${SRCS:.el=.elc} @@ -93,6 +99,8 @@ ITSELCS = ${ITSSRCS:.el=.elc} DIST = ${ETCS} ${SRCS} ${INITELS} +ETAGS = etags + all: ${ELCS} .SUFFIXES: .el .elc @@ -101,39 +109,45 @@ all: ${ELCS} ${EMACS} ${BATCHFLAGS} ${DEPS} -f batch-byte-compile $< clean: - rm -f ${ELCS} *~ */*~ \#* .\#* */\#* */.\#* + rm -f ${ELCS} *~ */*~ \#* .\#* */\#* */.\#* TAGS -distclean: - rm -f ${ELCS} config.* Makefile +tags: + ${ETAGS} *.el egg/*.el its/*.el helper/*.c + +distclean: clean + rm -f ${ELCS} config.* Makefile + rm -rf autom4te.cache/ install: install-site install-site: all echo "Egg system will be installed in ${lispdir}/egg...."; \ - if [ -d ${lispdir}/egg ]; then \ + if [ -d ${DESTDIR}${lispdir}/egg ]; then \ echo "Clean up the previsous installation...."; \ - rm -rf ${lispdir}/egg/*; \ + rm -rf ${DESTDIR}${lispdir}/egg/*; \ else \ echo "Make the directory ${lispdir}/egg..."; \ - mkdir ${lispdir}/egg; \ + mkdir -p ${DESTDIR}${lispdir}/egg; \ fi; \ # for FILE in ${TOPSRCS} ${TOPELCS} ${INITELS}; \ do \ - ${INSTALL_DATA} $${FILE} ${lispdir}/egg/; \ + ${INSTALL_DATA} $${FILE} ${DESTDIR}${lispdir}/egg/; \ done; \ # - mkdir ${lispdir}/egg/egg ; \ + mkdir -p ${DESTDIR}${lispdir}/egg/egg ; \ for FILE in ${EGGSRCS} ${EGGELCS} ; \ do \ - ${INSTALL_DATA} $${FILE} ${lispdir}/egg/egg; \ + ${INSTALL_DATA} $${FILE} ${DESTDIR}${lispdir}/egg/egg; \ done; \ + touch ${DESTDIR}${lispdir}/egg/egg/.nosearch; \ # - mkdir ${lispdir}/egg/its ; \ + mkdir -p ${DESTDIR}${lispdir}/egg/its ; \ for FILE in ${ITSSRCS} ${ITSELCS} ; \ do \ - ${INSTALL_DATA} $${FILE} ${lispdir}/egg/its ; \ + ${INSTALL_DATA} $${FILE} ${DESTDIR}${lispdir}/egg/its ; \ done; \ + touch ${DESTDIR}${lispdir}/egg/its/.nosearch; \ uninstall-site: