LIBS=-lmythread++

all: cond
cond: cond.cc
	g++ $(CFLAGS) -lpthread -o cond cond.cc $(LIBS)
clean:
	rm -f cond *.o *~
rebuild: clean all
