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

include $(TOPDIR)/make.conf



TESTS	= tPipe tSelect


all:	$(TESTS)

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

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

clean veryclean::
	rm -f $(TESTS)

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