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

include $(TOPDIR)/make.conf

FILES = Makefile tPipe.c tSelect.c

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)

veryclean distclean::
	rm -f $(TESTS)

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