

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

distclean:
	rm -f actortest
	rm -f *~

clean:
	rm -f actortest
	rm -f *~
