all:	cond
cond:
	g++ -lpthread -o cond cond.cc
clean:
	rm -f cond *.o *~
rebuild:	clean all
