.PHONY: all
all: hellothreads4

hellothreads4: hellothreads4.cpp
	g++ -g -pthread -o hellothreads4 hellothreads4.cpp

.PHONY: clean
clean:
	rm -f hellothreads4 hellothreads4.o

