1#
2# $Id: Makefile.in,v 1.5 2001/08/14 13:43:20 hiroo Exp $
3#
4
5# FreeWnn is a network-extensible Kana-to-Kanji conversion system.
6# This file is part of FreeWnn.
7#
8# Copyright Wnn Consortium. 1993
9# Copyright FreeWnn Project 2001
10#
11# Author: OMRON SOFTWARE Co., Ltd. <freewnn@rd.kyoto.omronsoft.co.jp>
12# Maintainer:  FreeWnn Project   <freewnn@tomo.gr.jp>
13#
14# This program is free software; you can redistribute it and/or modify
15# it under the terms of the GNU General Public License as published by
16# the Free Software Foundation; either version 2, or (at your option)
17# any later version.
18#
19# This program is distributed in the hope that it will be useful,
20# but WITHOUT ANY WARRANTY; without even the implied warranty of
21# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22# GNU General Public License for more details.
23#
24# You should have received a copy of the GNU General Public License
25# along with GNU Emacs; see the file COPYING.  If not, write to the
26# Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
27#
28# Commentary:
29#
30# Change log:
31#	'99/04/19	TAOKA Satoshi - �IJ� �һ�<taoka@infonets.hiroshima-u.ac.jp>
32#		�����ȡ���ǥ��쥯�ȥ���ѹ���ǽ�ˤ���
33#
34# Last modified date: 19,Apr.1999
35#
36
37include @top_srcdir@/makerule.mk
38top_builddir = ../../..
39
40# Makefile for gerodic 1.00
41#
42#	Jun. 26th '93 Wnn Consortium
43
44
45INSTALL         = @INSTALL@ $(INSTALLFLAGS)
46
47#ATOD=${JWNNBINDIR}/atod
48ATOD=${WNNJUTILSRC}/atod
49
50#WNNTOUCH=${WNNBINDIR}/wnntouch
51WNNTOUCH=${WNNJUTILSRC}/wnntouch
52
53#HINSI=${JWNNWNNDIR}/hinsi.data
54HINSI=${PUBDICPLUSSRC}/hinsi.data
55
56GERODIR=${JWNNDICDIR}/gerodic
57
58SRC=g-jinmei.u
59OBJ=g-jinmei.dic
60
61all:: ${OBJ}
62
63$(OBJ): $(SRC)
64	${ATOD} -h ${HINSI} ${OBJ} < ${SRC}
65
66install:: ${OBJ}
67	@if [ -d $(DESTDIR)$(GERODIR) ]; then set +x; \
68	else (set -x; $(MKDIRHIER) $(DESTDIR)$(GERODIR)); fi
69	$(INSTALL) $(INSTDATFLAGS) $(LOCAL_INSTFLAGS) ${OBJ} $(DESTDIR)$(GERODIR)
70
71clean::
72	$(RM) ${OBJ}
73