all: targets 

targets: filedtmf tbusy tonedebug trim 

clean:   
	 rm -f filedtmf tbusy tonedebug trim core* *.o

%: %.cpp ../../src/libvpb.a
	$(CXX) $< -o $@ ../../src/libvpb.a -pthread -Wall -g -lm \
	../kbhit.cpp $(GPROF) 


