Mercurial > freewnn
diff cWnn/cd/Makefile.in @ 0:bbc77ca4def5
initial import
author | Yoshiki Yazawa <yaz@cc.rim.or.jp> |
---|---|
date | Thu, 13 Dec 2007 04:30:14 +0900 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cWnn/cd/Makefile.in Thu Dec 13 04:30:14 2007 +0900 @@ -0,0 +1,198 @@ +# +# $Id: Makefile.in,v 1.7 2001/08/14 13:43:21 hiroo Exp $ +# + +# +# FreeWnn is a network-extensible Kana-to-Kanji conversion system. +# This file is part of FreeWnn. +# +# Copyright Kyoto University Research Institute for Mathematical Sciences +# 1987, 1988, 1989, 1990, 1991, 1992 +# Copyright OMRON Corporation. 1987, 1988, 1989, 1990, 1991, 1992, 1999 +# Copyright ASTEC, Inc. 1987, 1988, 1989, 1990, 1991, 1992 +# Copyright FreeWnn Project 1999, 2000, 2001 +# +# Maintainer: FreeWnn Project <freewnn@tomo.gr.jp> +# +# This program 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 2 of the License, or +# (at your option) any later version. +# +# This program 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 this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# + +include @top_srcdir@/makerule.mk +top_builddir = ../.. + +INSTALL = @INSTALL@ $(INSTALLFLAGS) + +SUBDIRS = rk rk_p rk_z + +SERVERCDS = cserverrc cixing.data + +CLIENTCDS = uum.msg uumkey uumkey_e uumkey_p uumrc uumrc_p uumrc_z wnnstat.msg + +CLIENTCDS2 = cvt_key_empty cvt_key_tbl cvt_key_tbl.ST cvt_key_tbl.gm cvt_key_tbl.kt cvt_key_tbl.mv cvt_key_tbl.vt + +LIBCDS1 = cixing.data libwnn.msg wnnenvrc wnnenvrc_Qi wnnenvrc_QiR wnnenvrc_R wnnenvrc_Wu wnnenvrc_WuR + +LIBCDS2 = serverdefs + +LINKS = $(CLIENTSCDS2) $(LIBCDS2) + +all:: $(LINKS) + +includes:: $(LINKS) + +cvt_key_empty: $(WNNCNVFILEDIR)/cvt_key_empty + $(RM) $@ + $(LN) $? $@ + +includes:: cvt_key_empty + +depend:: cvt_key_empty + +clean:: + $(RM) cvt_key_empty + +cvt_key_tbl: $(WNNCNVFILEDIR)/cvt_key_tbl + $(RM) $@ + $(LN) $? $@ + +includes:: cvt_key_tbl + +depend:: cvt_key_tbl + +clean:: + $(RM) cvt_key_tbl + +cvt_key_tbl.ST: $(WNNCNVFILEDIR)/cvt_key_tbl.ST + $(RM) $@ + $(LN) $? $@ + +includes:: cvt_key_tbl.ST + +depend:: cvt_key_tbl.ST + +clean:: + $(RM) cvt_key_tbl.ST + +cvt_key_tbl.gm: $(WNNCNVFILEDIR)/cvt_key_tbl.gm + $(RM) $@ + $(LN) $? $@ + +includes:: cvt_key_tbl.gm + +depend:: cvt_key_tbl.gm + +clean:: + $(RM) cvt_key_tbl.gm + +cvt_key_tbl.kt: $(WNNCNVFILEDIR)/cvt_key_tbl.kt + $(RM) $@ + $(LN) $? $@ + +includes:: cvt_key_tbl.kt + +depend:: cvt_key_tbl.kt + +clean:: + $(RM) cvt_key_tbl.kt + +cvt_key_tbl.mv: $(WNNCNVFILEDIR)/cvt_key_tbl.mv + $(RM) $@ + $(LN) $? $@ + +includes:: cvt_key_tbl.mv + +depend:: cvt_key_tbl.mv + +clean:: + $(RM) cvt_key_tbl.mv + +cvt_key_tbl.vt: $(WNNCNVFILEDIR)/cvt_key_tbl.vt + $(RM) $@ + $(LN) $? $@ + +includes:: cvt_key_tbl.vt + +depend:: cvt_key_tbl.vt + +clean:: + $(RM) cvt_key_tbl.vt + +serverdefs: $(WNNJDSRC)/serverdefs + $(RM) $@ + $(LN) $? $@ + +includes:: serverdefs + +depend:: serverdefs + +clean:: + $(RM) serverdefs + +install:: + @for flag in ${MAKEFLAGS} ''; do \ + case "$$flag" in *=*) ;; *[i]*) set +e;; esac; done; \ + for i in $(CWNNWNNDIR); do if [ -d $(DESTDIR)$$i ]; then \ + set +x; else (set -x; $(MKDIRHIER) $(DESTDIR)$$i); fi; \ + done + +install:: $(SERVERCDS) + @if [ -d $(DESTDIR)$(CWNNWNNDIR) ]; then set +x; \ + else (set -x; $(MKDIRHIER) $(DESTDIR)$(CWNNWNNDIR)); fi + @for flag in ${MAKEFLAGS} ''; do \ + case "$$flag" in *=*) ;; *[i]*) set +e;; esac; done; \ + for i in $(SERVERCDS); do \ + (set -x; $(INSTALL) $(INSTDATFLAGS) $$i $(DESTDIR)$(CWNNWNNDIR)); \ + done + +install:: $(CLIENTCDS) + @if [ -d $(DESTDIR)$(CWNNWNNDIR) ]; then set +x; \ + else (set -x; $(MKDIRHIER) $(DESTDIR)$(CWNNWNNDIR)); fi + @for flag in ${MAKEFLAGS} ''; do \ + case "$$flag" in *=*) ;; *[i]*) set +e;; esac; done; \ + for i in $(CLIENTCDS); do \ + (set -x; $(INSTALL) $(INSTDATFLAGS) $$i $(DESTDIR)$(CWNNWNNDIR)); \ + done + +install:: $(CLIENTCDS2) + @if [ -d $(DESTDIR)$(WNNWNNDIR) ]; then set +x; \ + else (set -x; $(MKDIRHIER) $(DESTDIR)$(WNNWNNDIR)); fi + @for flag in ${MAKEFLAGS} ''; do \ + case "$$flag" in *=*) ;; *[i]*) set +e;; esac; done; \ + for i in $(CLIENTCDS2); do \ + (set -x; $(INSTALL) $(INSTDATFLAGS) $$i $(DESTDIR)$(WNNWNNDIR)); \ + done + +install:: $(LIBCDS1) + @if [ -d $(DESTDIR)$(CWNNWNNDIR) ]; then set +x; \ + else (set -x; $(MKDIRHIER) $(DESTDIR)$(CWNNWNNDIR)); fi + @for flag in ${MAKEFLAGS} ''; do \ + case "$$flag" in *=*) ;; *[i]*) set +e;; esac; done; \ + for i in $(LIBCDS1); do \ + (set -x; $(INSTALL) $(INSTDATFLAGS) $$i $(DESTDIR)$(CWNNWNNDIR)); \ + done + +install:: $(LIBCDS2) + @if [ -d $(DESTDIR)$(WNNWNNDIR) ]; then set +x; \ + else (set -x; $(MKDIRHIER) $(DESTDIR)$(WNNWNNDIR)); fi + @for flag in ${MAKEFLAGS} ''; do \ + case "$$flag" in *=*) ;; *[i]*) set +e;; esac; done; \ + for i in $(LIBCDS2); do \ + (set -x; $(INSTALL) $(INSTDATFLAGS) $$i $(DESTDIR)$(WNNWNNDIR)); \ + done + +depend:: + +clean:: + $(RM) $(LINKS)