Files
EVI---AR-Prototype/OpencvTest/Makefile

15 lines
287 B
Makefile
Raw Normal View History

2015-10-23 14:44:48 -04:30
TARGET = OCVTest
OBJECTS = main.o marker.o decode.o calib.o
CXXFLAGS = `pkg-config --cflags opencv` -O3 -DDESKTOP
LDLIBS = `pkg-config --libs opencv`
all: $(TARGET)
$(TARGET): $(OBJECTS)
g++ -o $(TARGET) $(OBJECTS) $(CXXFLAGS) $(LDLIBS)
%o: %cpp
clean:
$(RM) $(TARGET) $(OBJECTS)