#:ts=8
#
# $Id: Makefile,v 1.4 1995/08/23 21:29:36 steppler Exp $
#	
# Makefile CNCL lib/unix/test
#
TOPDIR	= ../../..

include $(TOPDIR)/make.conf

FILES = Makefile ptest.c ptest.h tPArray.c tPDL.c tPIntDL.c \
	tPStringDL.c tbasis.c

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)

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

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