all: targets 

targets: cidtest deccid samcid cidgtest tcid

clean:  
	 rm -f cidtest deccid samcid cidgtest tcid core* *.o
	 rm -f linear??.wav

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


