OBJECTS = ShowCAvi

all: $(OBJECTS)

clean:
	rm -f $(OBJECTS)

ShowCAvi: Show-avi-change.cpp
	$(CXX) $^ -o $@ `pkg-config --cflags --libs opencv`


