#:ts=8
#
# $Id$
#
# Makefile CNCL lib/container/test
#
TOPDIR	= ../../..

include $(TOPDIR)/make.conf



OBJS	= Test.o

TESTS	= tDL tQueue tHash


all:	$(TESTS)

tDL:	tDL.o $(OBJS)
	$(CC) $(LFLAGS) -o tDL tDL.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)

clean veryclean::
	rm -f $(TESTS)

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