# MAKEFILE for thread.c
# Written by Jose Mari Reyes
# makefile for DCE Thread Digital OSF

thread: thread.c
	cc -D_REENTRANT -o thread thread.c -lpthreads -lc_r

