OBJECTS = ShowChange

all: $(OBJECTS)

clean:
	rm -f $(OBJECTS)

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


