CC=gcc

all:	thread.c thread.h
	${CC} -o thread thread.c
clean:
	rm -f thread
	rm -f thread.o		
