all: status status_opt

status: status.cpp
	g++ -g -Wall -o status status.cpp -lpthread

status_opt: status_opt.cpp
	g++ -g -Wall -o status_opt status_opt.cpp -lpthread

