Fix include paths (remove double slashes) for lib

This commit is contained in:
Lorenz Meier 2015-01-22 09:21:52 +01:00
parent 3240c5dd03
commit 7719f7692a
2 changed files with 6 additions and 6 deletions

View File

@ -4,19 +4,19 @@
LIBUAVCAN_DIR := $(dir $(lastword $(MAKEFILE_LIST)))
UAVCAN_DIR := $(LIBUAVCAN_DIR)/../
UAVCAN_DIR := $(LIBUAVCAN_DIR)../
#
# Library sources
#
LIBUAVCAN_SRC := $(shell find $(LIBUAVCAN_DIR)/src -type f -name '*.cpp')
LIBUAVCAN_SRC := $(shell find $(LIBUAVCAN_DIR)src -type f -name '*.cpp')
LIBUAVCAN_INC := $(LIBUAVCAN_DIR)/include
LIBUAVCAN_INC := $(LIBUAVCAN_DIR)include
#
# DSDL compiler executable
#
LIBUAVCAN_DSDLC := $(LIBUAVCAN_DIR)/dsdl_compiler/libuavcan_dsdlc
LIBUAVCAN_DSDLC := $(LIBUAVCAN_DIR)dsdl_compiler/libuavcan_dsdlc
#
# Standard DSDL definitions

View File

@ -4,6 +4,6 @@
LIBUAVCAN_STM32_DIR := $(dir $(lastword $(MAKEFILE_LIST)))
LIBUAVCAN_STM32_SRC := $(shell find $(LIBUAVCAN_STM32_DIR)/src -type f -name '*.cpp')
LIBUAVCAN_STM32_SRC := $(shell find $(LIBUAVCAN_STM32_DIR)src -type f -name '*.cpp')
LIBUAVCAN_STM32_INC := $(LIBUAVCAN_STM32_DIR)/include/
LIBUAVCAN_STM32_INC := $(LIBUAVCAN_STM32_DIR)include/