OBJECTS = ShowCam

all: $(OBJECTS)

clean:
	rm -f $(OBJECTS)

ShowCam: Show-camera.cpp
	$(CXX) $^ -o $@ `pkg-config --cflags --libs opencv`


