# SKK JISYO TOOLS (SKK dictionary handling tools)
# version 1.0 of May 23, 1994
# Copyright (C) 1994 Hironobu Takahashi, Masahiko Sato
# This file is part of SKK
# 
# SKK JISYO TOOLS are free software; you can redistribute them and/or modify
# them under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
# 
# SKK JISYO TOOLS are distributed in the hope that they 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 SKK; see the file COPYING.  If not, write to
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */

CC=cc
CFLAGS=-O -DTMPDIR=\"/tmp\"

# for gcc user
#CC=gcc
#CFLAGS=-O2 -g -Wall -DTMPDIR=\"/tmp\"

ALL: skkjisyo-expr skkjisyo-sort skkjisyo-entries

skkjisyo-expr: skkjisyo-expr.c
	$(CC) $(CFLAGS) -o $@ skkjisyo-expr.c

skkjisyo-sort: skkjisyo-sort.c
	$(CC) $(CFLAGS) -o $@ skkjisyo-sort.c

skkjisyo-entries: skkjisyo-entries.c
	$(CC) $(CFLAGS) -o $@ skkjisyo-entries.c
