0
|
1 #
|
|
2 # $Id: Makefile.in,v 1.10 2003/05/11 18:31:45 hiroo Exp $
|
|
3 #
|
|
4
|
|
5 #
|
|
6 # FreeWnn is a network-extensible Kana-to-Kanji conversion system.
|
|
7 # This file is part of FreeWnn.
|
|
8 #
|
|
9 # Copyright Kyoto University Research Institute for Mathematical Sciences
|
|
10 # 1987, 1988, 1989, 1990, 1991, 1992
|
|
11 # Copyright OMRON Corporation. 1987, 1988, 1989, 1990, 1991, 1992, 1999
|
|
12 # Copyright ASTEC, Inc. 1987, 1988, 1989, 1990, 1991, 1992
|
|
13 # Copyright FreeWnn Project 1999, 2000, 2001, 2003
|
|
14 #
|
|
15 # Maintainer: FreeWnn Project <freewnn@tomo.gr.jp>
|
|
16 #
|
|
17 # This program is free software; you can redistribute it and/or modify
|
|
18 # it under the terms of the GNU General Public License as published by
|
|
19 # the Free Software Foundation; either version 2 of the License, or
|
|
20 # (at your option) any later version.
|
|
21 #
|
|
22 # This program is distributed in the hope that it will be useful,
|
|
23 # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
24 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
25 # GNU General Public License for more details.
|
|
26 #
|
|
27 # You should have received a copy of the GNU General Public License
|
|
28 # along with this program; if not, write to the Free Software
|
|
29 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
30 #
|
|
31
|
|
32 include @top_srcdir@/makerule.mk
|
|
33 top_builddir = ../..
|
|
34
|
|
35 INCLUDES = -I$(KWNNINCLUDESRC) -I$(TOP)
|
|
36 DEFINES = $(KWNNDEFINES) $(KWNNLANGDEF)
|
|
37
|
|
38 SRCS= strings.c sstrings.c bdic.c hindo.c gethinsi.c revdic.c pwd.c bcopy.c xutoj.c dic_atojis.c msg.c yincoding.c py_table.c zy_table.c server_env.c mkdir.c
|
|
39 SRCS2= getopt.c getopt1.c
|
|
40
|
|
41 OBJS= strings.o sstrings.o bdic.o hindo.o gethinsi.o revdic.o pwd.o bcopy.o xutoj.o dic_atojis.o msg.o yincoding.o py_table.o zy_table.o server_env.o mkdir.o
|
|
42 OBJS2= getopt.o getopt1.o
|
|
43
|
|
44 all::
|
|
45
|
|
46 includes::
|
|
47
|
|
48 .c.o:
|
|
49 $(RM) $@
|
|
50 $(CC) -c $(CFLAGS) $(_NOOP_) $*.c
|
|
51
|
|
52 clean::
|
|
53
|
|
54 all:: $(SRCS) $(OBJS) $(SRCS2) $(OBJS2)
|
|
55
|
|
56 includes:: $(SRCS) $(SRCS2)
|
|
57
|
|
58 strings.c: $(WNNETCSRC)/strings.c
|
|
59 $(RM) $@
|
|
60 $(LN) $? $@
|
|
61
|
|
62 includes:: strings.c
|
|
63
|
|
64 depend:: strings.c
|
|
65
|
|
66 sstrings.c: $(WNNETCSRC)/sstrings.c
|
|
67 $(RM) $@
|
|
68 $(LN) $? $@
|
|
69
|
|
70 includes:: sstrings.c
|
|
71
|
|
72 depend:: sstrings.c
|
|
73
|
|
74 bdic.c: $(WNNETCSRC)/bdic.c
|
|
75 $(RM) $@
|
|
76 $(LN) $? $@
|
|
77
|
|
78 includes:: bdic.c
|
|
79
|
|
80 depend:: bdic.c
|
|
81
|
|
82 hindo.c: $(WNNETCSRC)/hindo.c
|
|
83 $(RM) $@
|
|
84 $(LN) $? $@
|
|
85
|
|
86 includes:: hindo.c
|
|
87
|
|
88 depend:: hindo.c
|
|
89
|
|
90 gethinsi.c: $(WNNETCSRC)/gethinsi.c
|
|
91 $(RM) $@
|
|
92 $(LN) $? $@
|
|
93
|
|
94 includes:: gethinsi.c
|
|
95
|
|
96 depend:: gethinsi.c
|
|
97
|
|
98 revdic.c: $(WNNETCSRC)/revdic.c
|
|
99 $(RM) $@
|
|
100 $(LN) $? $@
|
|
101
|
|
102 includes:: revdic.c
|
|
103
|
|
104 depend:: revdic.c
|
|
105
|
|
106 pwd.c: $(WNNETCSRC)/pwd.c
|
|
107 $(RM) $@
|
|
108 $(LN) $? $@
|
|
109
|
|
110 includes:: pwd.c
|
|
111
|
|
112 depend:: pwd.c
|
|
113
|
|
114 bcopy.c: $(WNNETCSRC)/bcopy.c
|
|
115 $(RM) $@
|
|
116 $(LN) $? $@
|
|
117
|
|
118 includes:: bcopy.c
|
|
119
|
|
120 depend:: bcopy.c
|
|
121
|
|
122 xutoj.c: $(WNNETCSRC)/xutoj.c
|
|
123 $(RM) $@
|
|
124 $(LN) $? $@
|
|
125
|
|
126 includes:: xutoj.c
|
|
127
|
|
128 depend:: xutoj.c
|
|
129
|
|
130 dic_atojis.c: $(WNNETCSRC)/dic_atojis.c
|
|
131 $(RM) $@
|
|
132 $(LN) $? $@
|
|
133
|
|
134 includes:: dic_atojis.c
|
|
135
|
|
136 depend:: dic_atojis.c
|
|
137
|
|
138 msg.c: $(WNNETCSRC)/msg.c
|
|
139 $(RM) $@
|
|
140 $(LN) $? $@
|
|
141
|
|
142 includes:: msg.c
|
|
143
|
|
144 depend:: msg.c
|
|
145
|
|
146 yincoding.c: $(WNNETCSRC)/yincoding.c
|
|
147 $(RM) $@
|
|
148 $(LN) $? $@
|
|
149
|
|
150 includes:: yincoding.c
|
|
151
|
|
152 depend:: yincoding.c
|
|
153
|
|
154 py_table.c: $(WNNETCSRC)/py_table.c
|
|
155 $(RM) $@
|
|
156 $(LN) $? $@
|
|
157
|
|
158 includes:: py_table.c
|
|
159
|
|
160 depend:: py_table.c
|
|
161
|
|
162 zy_table.c: $(WNNETCSRC)/zy_table.c
|
|
163 $(RM) $@
|
|
164 $(LN) $? $@
|
|
165
|
|
166 includes:: zy_table.c
|
|
167
|
|
168 depend:: zy_table.c
|
|
169
|
|
170 server_env.c: $(WNNETCSRC)/server_env.c
|
|
171 $(RM) $@
|
|
172 $(LN) $? $@
|
|
173
|
|
174 includes:: server_env.c
|
|
175
|
|
176 depend:: server_env.c
|
|
177
|
|
178 mkdir.c: $(WNNETCSRC)/mkdir.c
|
|
179 $(RM) $@
|
|
180 $(LN) $? $@
|
|
181
|
|
182 includes:: mkdir.c
|
|
183
|
|
184 depend:: mkdir.c
|
|
185
|
|
186 getopt.c: $(WNNETCSRC)/getopt.c
|
|
187 $(RM) $@
|
|
188 $(LN) $? $@
|
|
189
|
|
190 includes:: getopt.c
|
|
191
|
|
192 depend:: getopt.c
|
|
193
|
|
194 getopt1.c: $(WNNETCSRC)/getopt1.c
|
|
195 $(RM) $@
|
|
196 $(LN) $? $@
|
|
197
|
|
198 includes:: getopt1.c
|
|
199
|
|
200 depend:: getopt1.c
|
|
201
|
|
202 depend:: .depend
|
|
203
|
|
204 clean::
|
|
205 $(RM) $(SRCS)
|
|
206 $(RM) $(SRCS2)
|
|
207 -$(RM) $(OBJS)
|
|
208 -$(RM) $(OBJS2)
|