0
|
1 # FreeWnn is a network-extensible Kana-to-Kanji conversion system.
|
|
2 # This file is part of FreeWnn.
|
|
3 #
|
|
4 # Copyright OMRON Corporation. 1987, 1988, 1989, 1990, 1991, 1992, 1999
|
|
5 # Copyright 1991 by Massachusetts Institute of Technology
|
|
6 # Copyright FreeWnn Project 2001
|
|
7 #
|
|
8 # Author: OMRON SOFTWARE Co., Ltd. <freewnn@rd.kyoto.omronsoft.co.jp>
|
|
9 # Maintainer: FreeWnn Project <freewnn@tomo.gr.jp>
|
|
10 #
|
|
11 # This program is free software; you can redistribute it and/or modify
|
|
12 # it under the terms of the GNU General Public License as published by
|
|
13 # the Free Software Foundation; either version 2, or (at your option)
|
|
14 # any later version.
|
|
15 #
|
|
16 # This program is distributed in the hope that it will be useful,
|
|
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
19 # GNU General Public License for more details.
|
|
20 #
|
|
21 # You should have received a copy of the GNU General Public License
|
|
22 # along with GNU Emacs; see the file COPYING. If not, write to the
|
|
23 # Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
24
|
|
25 include @top_srcdir@/makerule.mk
|
|
26 top_builddir = ../..
|
|
27
|
|
28 LIB_MT_DEFINES = LibraryMTDefines
|
|
29
|
|
30 INCLUDES = -I$(WNNINCLUDESRC)
|
|
31 DEFINES = $(WNNDEFINES) -DWNNDEFAULT -DMULTI $(ALLLANGDEF)
|
|
32 LINTLIBS =
|
|
33
|
|
34 SRCS = rk_bltinfn.c rk_main.c rk_modread.c rk_read.c rk_alloc.c rk_vars.c
|
|
35
|
|
36 OBJS = rk_bltinfn.o rk_main.o rk_modread.o rk_read.o rk_alloc.o rk_vars.o
|
|
37
|
|
38 all::
|
|
39
|
|
40 includes::
|
|
41
|
|
42 .c.o:
|
|
43 $(RM) $@
|
|
44 $(CC) -c $(CFLAGS) $(_NOOP_) $*.c
|
|
45
|
|
46 clean::
|
|
47
|
|
48 all:: $(OBJS)
|
|
49
|
|
50 depend:: .depend
|
|
51
|