#! /usr/global/bin/bash
#:ts=8
#
# $Id: Makefile,v 1.4 1995/08/23 21:29:02 steppler Exp $
#
# Makefile CNCL bin/fuzzy/test
#
TOPDIR	= ../../..

include $(TOPDIR)/make.conf


PROG	= tfuzzy

FILES   = Makefile test.fr tfuzzy.c

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 veryclean distclean::
	rm -f test.h test.c Fuzzy.*

veryclean distclean::
	rm -f $(PROG)

depend::
	touch test.h

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