

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

distclean:
	rm -f actorqueue
	rm -f *~

clean:
	rm -f actorqueue
	rm -f *~
