#:ts=8
#
# $Id: Makefile,v 1.6 1995/11/23 10:42:47 steppler Exp $
#
# Makefile CNCL lib/container/test
#
TOPDIR	= ../../..

include $(TOPDIR)/make.conf

FILES = IntAVLNode.c IntAVLNode.h IntAVLTree.c IntAVLTree.h Makefile Test.c \
	Test.h tSL.c tDL.c tHash.c tQueue.c tsrpt.c

OBJS	= Test.o

TESTS	= tDL tQueue tHash tSL


all:	$(TESTS)

tDL:	tDL.o $(OBJS)
	$(CC) $(LFLAGS) -o tDL tDL.o $(OBJS) $(LIBS)

tSL:	tSL.o $(OBJS)
	$(CC) $(LFLAGS) -o tSL tSL.o $(OBJS) $(LIBS)

tQueue:	tQueue.o $(OBJS)
	$(CC) $(LFLAGS) -o tQueue tQueue.o $(OBJS) $(LIBS)

tHash:	tHash.o $(OBJS)
	$(CC) $(LFLAGS) -o tHash tHash.o $(OBJS) $(LIBS)

veryclean distclean::
	rm -f $(TESTS)

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