#:ts=8
#
# $Id: Makefile,v 0.0 1994/07/21 12:38:14 cncl-adm Exp cncl-adm $
#
# Makefile CNCL bin/fuzzy/test
#
TOPDIR	= ../../..

include $(TOPDIR)/make.conf


PROG	= tfuzzy

OBJS	= tfuzzy.o test.o


all:		$(PROG)


$(PROG):	$(OBJS)
	$(CC) $(LFLAGS) -o $(PROG) $(OBJS) $(LIBS)


test.c test.h:	test.fr
	../CNfrc -o test test.fr

tfuzzy.o:	test.h test.c

clean::
	rm -f $(PROG)
	rm -f Fuzzy.*

veryclean::
	rm -f $(PROG)
	rm -f Fuzzy.*
	rm -f test.h test.c

depend::
	touch test.h

# Common stuff
include $(TOPDIR)/make.common
