#  Makefile for public portion of the POSIX pthreads API
#
include ../Rules.runtime

LINKS  = ${UTILS} ${PTHREAD_LIB}
all: cv
CFLAGS += -I.
cv: condv.c
	${CC} ${CFLAGS} condv.c ${LINKS} -o cv

clean:
	rm -f *.o *.bak *.rem cv *~

