Created
November 21, 2013 22:49
-
-
Save jeradesign/7591262 to your computer and use it in GitHub Desktop.
Actual working Makefile from a project using a MacPorts install of OpenCV on a Mac.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INCLUDES = $(shell pkg-config --cflags opencv) | |
LIBS = $(shell pkg-config --libs opencv) | |
CXX = clang | |
CXXFLAGS = -std=c++11 -stdlib=libstdc++ -Wall -Werror -ggdb $(INCLUDES) | |
LDFLAGS = $(LIBS) -lstdc++ | |
.PHONY: run | |
run: FingerSpike | |
./FingerSpike | |
FingerSpike: FingerSpike.cpp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment