#this includes the configuration Makefile from carmen
include ../../Makefile.conf

#Compilation flags for gcc
CFLAGS += -lstdc++
#Compilation flags for g++
CXXFLAGS +=

#Insert here the name of any include directories you may need.
#NOTE: default carmen/include directories or even default directories like /urs/include are not required
#NOTE: must use the -I before the directory
IFLAGS += -I/usr/include/opencv/  `pkg-config --cflags opencv`		`pkg-config --cflags gtk+-2.0`


LFLAGS+=	-lglobal\
			-lipc\
			-lparam_interface\
			-lipc_wrapper\
			libreadcommandlineparameters.a
# 			-lcarmenserial\

MODULE_NAME = MPPF_R

MODULE_COMMENT = Motion Planner with Potencial Fields
MODULE_AUTHOR = Eugénio da Costa
MODULE_MAINTAINER = Eugenio da Costa

SOURCES = mppf_r.cpp

PUBLIC_INCLUDES = mppf_r_messages.h mppf_r_interface.h

PUBLIC_LIBRARIES =  


PUBLIC_BINARIES =  

PUBLIC_LIBRARIES_SO = 

TARGETS = mppf_r

ifndef NO_PYTHON
TARGETS += 
endif

#Rule for all module libraries

#Rule for all module binaries
mppf_r:	mppf_r.o     \
		$(LAR_HOME)/src/utils/ipc_wrapper/libipc_wrapper.a

include ../../Makefile.rules
