

all:
	g++ -o threadtest -std=c++14 threadtest.cpp  -lpthread

distclean:
	rm -f threadtest
	rm -f *~

clean:
	rm -f threadtest
	rm -f *~
