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

all: th

LINKS  = ${LIBDIR}/${UTILS_LIBNAME} ${LIBDIR}/${LIBNAME} /usr/lib/libm.a
CFLAGS += -I${INCDIR}

th:  thread.c
	${CC} ${CFLAGS} thread.c ${LINKS} -o th
clean:
	rm -f *.o *.bak *.rem th *~

