mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
25 lines
468 B
Makefile
25 lines
468 B
Makefile
#
|
|
# Copyright (C) 2014 Pavel Kirienko <pavel.kirienko@gmail.com>
|
|
#
|
|
|
|
LIBUAVCAN_DIR := $(dir $(lastword $(MAKEFILE_LIST)))
|
|
|
|
UAVCAN_DIR := $(LIBUAVCAN_DIR)../
|
|
|
|
#
|
|
# Library sources
|
|
#
|
|
LIBUAVCAN_SRC := $(shell find $(LIBUAVCAN_DIR)src -type f -name '*.cpp')
|
|
|
|
LIBUAVCAN_INC := $(LIBUAVCAN_DIR)include
|
|
|
|
#
|
|
# DSDL compiler executable
|
|
#
|
|
LIBUAVCAN_DSDLC := $(LIBUAVCAN_DIR)dsdl_compiler/libuavcan_dsdlc
|
|
|
|
#
|
|
# Standard DSDL definitions
|
|
#
|
|
UAVCAN_DSDL_DIR := $(UAVCAN_DIR)dsdl/uavcan
|