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

all: th

LINKS  = ${UTILS} ${PTHREAD_LIB}

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

