Skip to content

Commit

Permalink
* Adding a prefix to let the makefile be used in different settings
Browse files Browse the repository at this point in the history
  • Loading branch information
chrberger committed Jul 28, 2015
1 parent 757cac2 commit 757dd12
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
PREFIX=/usr
CXX=g++
RM=rm -f
INCLUDES=-I/opt/od/include/opendavinci
INCLUDES=-I$(PREFIX)/include/opendavinci
CPPFLAGS=-Wall $(INCLUDES)
LDLIBS=-L/opt/od/lib/ -lopendavinci -lpthread -lopencv_core -lopencv_highgui
LDLIBS=-L$(PREFIX)/lib/ -lopendavinci -lpthread -lopencv_core -lopencv_highgui

BIN=CaroloCup-CameraPlayback
SRCS=CaroloCup-CameraPlayback.cpp
Expand Down

0 comments on commit 757dd12

Please sign in to comment.