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

include $(TOPDIR)/make.conf



TESTS	= tCoord tString tStringn test_int test_float tInt tDouble


all:	$(TESTS)

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

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

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

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

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

tInt:		tInt.o
	$(CC) $(LFLAGS) -o tInt tInt.o $(LIBS)
	
tDouble:	tDouble.o
	$(CC) $(LFLAGS) -o tDouble tDouble.o $(LIBS)
	
	
clean veryclean::
	rm -f $(TESTS)

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