# Japanese Probabilistic Dependency Analyzer
#
# Computational Linguistics Laboratory
# Nara Institute of Science and Technology
# Copyright (C) 1997 Masakazu Fujio and Yuji Matsumoto

CC	= gcc
RM	= rm -f

all:: best ki

best::
	$(CC) best.c -o best

ki::
	$(CC) ki.c -o ki

clean::
	$(RM) best ki *.o core a.out *~
