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

include $(TOPDIR)/make.conf



TESTS	= tPArray tPDL tPStringDL tbasis


all:	$(TESTS)

tPArray:	tPArray.o
	$(CC) $(LFLAGS) -o tPArray tPArray.o $(LIBS)

tPDL:		tPDL.o ptest.o 
	$(CC) $(LFLAGS) -o tPDL tPDL.o ptest.o $(LIBS)

tPStringDL:	tPStringDL.o
	$(CC) $(LFLAGS) -o tPStringDL tPStringDL.o $(LIBS)

tbasis:		tbasis.o
	$(CC) $(LFLAGS) -o tbasis tbasis.o $(LIBS)

clean veryclean::
	rm -f $(TESTS) *.dat

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