2015-09-10 22:15:55 -03:00
|
|
|
############################################################################
|
|
|
|
#
|
2017-01-14 10:38:28 -04:00
|
|
|
# Copyright (c) 2015 - 2017 PX4 Development Team. All rights reserved.
|
2015-09-10 22:15:55 -03:00
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
#
|
|
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in
|
|
|
|
# the documentation and/or other materials provided with the
|
|
|
|
# distribution.
|
|
|
|
# 3. Neither the name PX4 nor the names of its contributors may be
|
|
|
|
# used to endorse or promote products derived from this software
|
|
|
|
# without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
#
|
|
|
|
############################################################################
|
2015-10-11 07:04:34 -03:00
|
|
|
|
|
|
|
# Enforce the presence of the GIT repository
|
|
|
|
#
|
|
|
|
# We depend on our submodules, so we have to prevent attempts to
|
|
|
|
# compile without it being present.
|
|
|
|
ifeq ($(wildcard .git),)
|
2015-10-26 06:19:30 -03:00
|
|
|
$(error YOU HAVE TO USE GIT TO DOWNLOAD THIS REPOSITORY. ABORTING.)
|
|
|
|
endif
|
|
|
|
|
2015-09-11 20:39:57 -03:00
|
|
|
# Help
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
# Don't be afraid of this makefile, it is just passing
|
|
|
|
# arguments to cmake to allow us to keep the wiki pages etc.
|
|
|
|
# that describe how to build the px4 firmware
|
|
|
|
# the same even when using cmake instead of make.
|
|
|
|
#
|
|
|
|
# Example usage:
|
|
|
|
#
|
|
|
|
# make px4fmu-v2_default (builds)
|
|
|
|
# make px4fmu-v2_default upload (builds and uploads)
|
|
|
|
# make px4fmu-v2_default test (builds and tests)
|
|
|
|
#
|
|
|
|
# This tells cmake to build the nuttx px4fmu-v2 default config in the
|
|
|
|
# directory build_nuttx_px4fmu-v2_default and then call make
|
|
|
|
# in that directory with the target upload.
|
|
|
|
|
2015-10-03 15:51:12 -03:00
|
|
|
# explicity set default build target
|
2016-08-03 18:04:35 -03:00
|
|
|
all: posix_sitl_default
|
2015-10-03 15:51:12 -03:00
|
|
|
|
2015-09-11 20:39:57 -03:00
|
|
|
# Parsing
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
# assume 1st argument passed is the main target, the
|
|
|
|
# rest are arguments to pass to the makefile generated
|
|
|
|
# by cmake in the subdirectory
|
2016-09-17 20:44:45 -03:00
|
|
|
FIRST_ARG := $(firstword $(MAKECMDGOALS))
|
2015-09-11 20:39:57 -03:00
|
|
|
ARGS := $(wordlist 2,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS))
|
2015-09-13 15:31:58 -03:00
|
|
|
j ?= 4
|
2015-09-11 20:39:57 -03:00
|
|
|
|
2016-12-21 19:44:58 -04:00
|
|
|
NINJA_BIN := ninja
|
2016-09-26 17:48:37 -03:00
|
|
|
ifndef NO_NINJA_BUILD
|
2016-12-30 19:11:59 -04:00
|
|
|
NINJA_BUILD := $(shell $(NINJA_BIN) --version 2>/dev/null)
|
2016-12-21 19:44:58 -04:00
|
|
|
|
2016-12-30 19:11:59 -04:00
|
|
|
ifndef NINJA_BUILD
|
|
|
|
NINJA_BIN := ninja-build
|
|
|
|
NINJA_BUILD := $(shell $(NINJA_BIN) --version 2>/dev/null)
|
|
|
|
endif
|
2016-09-26 17:48:37 -03:00
|
|
|
endif
|
2016-12-21 19:44:58 -04:00
|
|
|
|
2015-10-06 15:57:55 -03:00
|
|
|
ifdef NINJA_BUILD
|
2016-12-31 19:31:02 -04:00
|
|
|
PX4_CMAKE_GENERATOR := Ninja
|
2016-12-30 19:11:59 -04:00
|
|
|
PX4_MAKE := $(NINJA_BIN)
|
2017-04-17 21:57:35 -03:00
|
|
|
|
|
|
|
ifdef VERBOSE
|
|
|
|
PX4_MAKE_ARGS := -v
|
|
|
|
else
|
|
|
|
PX4_MAKE_ARGS :=
|
|
|
|
endif
|
2015-10-06 15:57:55 -03:00
|
|
|
else
|
2016-12-30 19:11:59 -04:00
|
|
|
ifdef SYSTEMROOT
|
|
|
|
# Windows
|
2016-12-31 19:31:02 -04:00
|
|
|
PX4_CMAKE_GENERATOR := "MSYS\ Makefiles"
|
2016-12-30 19:11:59 -04:00
|
|
|
else
|
2016-12-31 19:31:02 -04:00
|
|
|
PX4_CMAKE_GENERATOR := "Unix\ Makefiles"
|
2016-12-30 19:11:59 -04:00
|
|
|
endif
|
|
|
|
PX4_MAKE = $(MAKE)
|
|
|
|
PX4_MAKE_ARGS = -j$(j) --no-print-directory
|
|
|
|
endif
|
2015-10-12 12:10:13 -03:00
|
|
|
|
2016-12-30 19:11:59 -04:00
|
|
|
SRC_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
|
|
|
|
|
2016-06-30 10:16:52 -03:00
|
|
|
# check if replay env variable is set & set build dir accordingly
|
|
|
|
ifdef replay
|
|
|
|
BUILD_DIR_SUFFIX := _replay
|
|
|
|
else
|
|
|
|
BUILD_DIR_SUFFIX :=
|
|
|
|
endif
|
|
|
|
|
2017-04-17 21:57:35 -03:00
|
|
|
# NuttX verbose output
|
|
|
|
ifdef VN
|
|
|
|
export PX4_NUTTX_BUILD_VERBOSE=1
|
|
|
|
export V=1
|
|
|
|
endif
|
|
|
|
|
|
|
|
# NuttX verbose patches output
|
|
|
|
ifdef VNP
|
|
|
|
export PX4_NUTTX_PATCHES_VERBOSE=1
|
|
|
|
endif
|
|
|
|
|
2016-09-07 09:05:22 -03:00
|
|
|
# additional config parameters passed to cmake
|
|
|
|
CMAKE_ARGS :=
|
|
|
|
ifdef EXTERNAL_MODULES_LOCATION
|
|
|
|
CMAKE_ARGS := -DEXTERNAL_MODULES_LOCATION:STRING=$(EXTERNAL_MODULES_LOCATION)
|
|
|
|
endif
|
|
|
|
|
2016-08-25 16:47:45 -03:00
|
|
|
|
2015-09-11 20:39:57 -03:00
|
|
|
# Functions
|
|
|
|
# --------------------------------------------------------------------
|
2015-09-13 15:31:58 -03:00
|
|
|
# describe how to build a cmake config
|
2015-09-11 20:39:57 -03:00
|
|
|
define cmake-build
|
2016-08-25 16:47:45 -03:00
|
|
|
+@$(eval BUILD_DIR = $(SRC_DIR)/build_$@$(BUILD_DIR_SUFFIX))
|
|
|
|
+@if [ $(PX4_CMAKE_GENERATOR) = "Ninja" ] && [ -e $(BUILD_DIR)/Makefile ]; then rm -rf $(BUILD_DIR); fi
|
2017-01-08 14:45:28 -04:00
|
|
|
+@if [ ! -e $(BUILD_DIR)/CMakeCache.txt ]; then mkdir -p $(BUILD_DIR) && cd $(BUILD_DIR) && cmake $(2) -G"$(PX4_CMAKE_GENERATOR)" -DCONFIG=$(1) $(CMAKE_ARGS) || (rm -rf $(BUILD_DIR)); fi
|
2017-01-14 10:38:28 -04:00
|
|
|
+@(cd $(BUILD_DIR) && $(PX4_MAKE) $(PX4_MAKE_ARGS) $(ARGS))
|
2016-04-24 19:48:56 -03:00
|
|
|
endef
|
|
|
|
|
2016-04-17 18:18:26 -03:00
|
|
|
define colorecho
|
2016-12-30 19:11:59 -04:00
|
|
|
+@tput setaf 6
|
|
|
|
+@echo $1
|
|
|
|
+@tput sgr0
|
2016-04-17 18:18:26 -03:00
|
|
|
endef
|
|
|
|
|
2016-09-17 20:44:45 -03:00
|
|
|
# Get a list of all config targets.
|
2016-10-26 19:10:00 -03:00
|
|
|
ALL_CONFIG_TARGETS := $(basename $(shell find "$(SRC_DIR)/cmake/configs" ! -name '*_common*' ! -name '*_sdflight_*' -name '*.cmake' -print | sed -e 's:^.*/::' | sort))
|
2016-09-17 20:44:45 -03:00
|
|
|
# Strip off leading nuttx_
|
|
|
|
NUTTX_CONFIG_TARGETS := $(patsubst nuttx_%,%,$(filter nuttx_%,$(ALL_CONFIG_TARGETS)))
|
|
|
|
|
2015-09-11 20:39:57 -03:00
|
|
|
# ADD CONFIGS HERE
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
# Do not put any spaces between function arguments.
|
|
|
|
|
2016-09-17 20:44:45 -03:00
|
|
|
# All targets.
|
|
|
|
$(ALL_CONFIG_TARGETS):
|
2016-12-30 19:11:59 -04:00
|
|
|
$(call cmake-build,$@,$(SRC_DIR))
|
2015-09-11 01:15:33 -03:00
|
|
|
|
2016-09-01 17:46:37 -03:00
|
|
|
# Abbreviated config targets.
|
2016-01-28 17:28:02 -04:00
|
|
|
|
2016-09-17 20:44:45 -03:00
|
|
|
# nuttx_ is left off by default; provide a rule to allow that.
|
|
|
|
$(NUTTX_CONFIG_TARGETS):
|
2016-12-30 19:11:59 -04:00
|
|
|
$(call cmake-build,nuttx_$@,$(SRC_DIR))
|
2016-04-17 16:54:37 -03:00
|
|
|
|
2016-09-26 17:48:37 -03:00
|
|
|
all_nuttx_targets: $(NUTTX_CONFIG_TARGETS)
|
|
|
|
|
2016-09-01 17:46:37 -03:00
|
|
|
posix: posix_sitl_default
|
|
|
|
broadcast: posix_sitl_broadcast
|
2016-01-02 04:30:51 -04:00
|
|
|
|
2016-09-01 17:46:37 -03:00
|
|
|
# Multi- config targets.
|
2016-04-01 06:36:27 -03:00
|
|
|
eagle_default: posix_eagle_default qurt_eagle_default
|
2017-01-11 18:18:33 -04:00
|
|
|
eagle_legacy_default: posix_eagle_legacy qurt_eagle_legacy
|
2016-05-02 18:53:24 -03:00
|
|
|
excelsior_default: posix_excelsior_default qurt_excelsior_default
|
2017-01-12 16:29:41 -04:00
|
|
|
excelsior_legacy_default: posix_excelsior_legacy qurt_excelsior_legacy
|
2016-05-05 04:11:29 -03:00
|
|
|
|
2016-09-17 20:44:45 -03:00
|
|
|
|
|
|
|
# All targets with just dependencies but no recipe must either be marked as phony (or have the special @: as recipe).
|
2017-01-12 16:29:41 -04:00
|
|
|
.PHONY: all posix broadcast eagle_default eagle_legacy_default excelsior_legacy_default excelsior_default all_nuttx_targets
|
2015-09-20 07:53:56 -03:00
|
|
|
|
2015-09-11 20:39:57 -03:00
|
|
|
# Other targets
|
|
|
|
# --------------------------------------------------------------------
|
2016-03-12 15:59:21 -04:00
|
|
|
|
2017-01-14 10:38:28 -04:00
|
|
|
.PHONY: qgc_firmware alt_firmware checks_bootloaders uavcan_firmware sizes check quick_check
|
2016-12-12 20:42:37 -04:00
|
|
|
|
2017-01-14 10:38:28 -04:00
|
|
|
# QGroundControl flashable NuttX firmware
|
2016-12-31 18:49:08 -04:00
|
|
|
qgc_firmware: \
|
2017-02-01 13:25:08 -04:00
|
|
|
check_auav-x21_default \
|
2016-12-26 23:28:11 -04:00
|
|
|
check_aerofc-v1_default \
|
|
|
|
check_crazyflie_default \
|
|
|
|
check_mindpx-v2_default \
|
2016-12-12 20:42:37 -04:00
|
|
|
check_px4fmu-v1_default \
|
2016-05-25 17:24:01 -03:00
|
|
|
check_px4fmu-v2_default \
|
2017-01-07 21:07:36 -04:00
|
|
|
check_px4fmu-v2_lpe \
|
2016-12-12 20:42:37 -04:00
|
|
|
check_px4fmu-v3_default \
|
|
|
|
check_px4fmu-v4_default \
|
2016-12-31 18:49:08 -04:00
|
|
|
check_tap-v1_default \
|
2017-01-08 21:54:41 -04:00
|
|
|
check_aerocore2_default \
|
2017-01-14 10:38:28 -04:00
|
|
|
check_sizes
|
2016-12-31 18:49:08 -04:00
|
|
|
|
2017-01-14 10:38:28 -04:00
|
|
|
# Other NuttX firmware
|
2017-01-04 12:15:59 -04:00
|
|
|
alt_firmware: \
|
2016-12-31 18:49:08 -04:00
|
|
|
check_px4-stm32f4discovery_default \
|
|
|
|
check_px4cannode-v1_default \
|
|
|
|
check_px4esc-v1_default \
|
2016-12-12 20:42:37 -04:00
|
|
|
check_px4fmu-v4pro_default \
|
2016-12-26 23:28:11 -04:00
|
|
|
check_px4fmu-v5_default \
|
|
|
|
check_px4nucleoF767ZI-v1_default \
|
2016-12-12 20:42:37 -04:00
|
|
|
check_s2740vc-v1_default \
|
2017-01-14 10:38:28 -04:00
|
|
|
check_sizes
|
2016-12-12 20:42:37 -04:00
|
|
|
|
|
|
|
checks_bootloaders: \
|
|
|
|
check_esc35-v1_bootloader \
|
2016-12-26 23:28:11 -04:00
|
|
|
check_px4cannode-v1_bootloader \
|
2016-12-12 20:42:37 -04:00
|
|
|
check_px4esc-v1_bootloader \
|
|
|
|
check_px4flow-v2_bootloader \
|
|
|
|
check_s2740vc-v1_bootloader \
|
2017-03-25 01:06:00 -03:00
|
|
|
# not fitting in flash check_zubaxgnss-v1_bootloader \
|
2017-01-14 10:38:28 -04:00
|
|
|
check_sizes
|
2016-12-12 20:42:37 -04:00
|
|
|
|
2017-01-14 10:38:28 -04:00
|
|
|
uavcan_firmware:
|
|
|
|
$(call colorecho,"Downloading and building Vector control (FOC) firmware for the S2740VC and PX4ESC 1.6")
|
|
|
|
@rm -rf vectorcontrol
|
|
|
|
@git clone --quiet --depth 1 https://github.com/thiemar/vectorcontrol.git && cd vectorcontrol
|
|
|
|
@BOARD=s2740vc_1_0 make --silent --no-print-directory
|
|
|
|
@BOARD=px4esc_1_6 make --silent --no-print-directory && $(SRC_DIR)/Tools/uavcan_copy.sh)
|
2016-12-12 20:42:37 -04:00
|
|
|
|
|
|
|
|
2017-01-14 10:38:28 -04:00
|
|
|
sizes:
|
|
|
|
@-find build_* -name firmware_nuttx -type f | xargs size 2> /dev/null || :
|
2016-12-12 20:42:37 -04:00
|
|
|
|
2017-01-14 10:38:28 -04:00
|
|
|
# All default targets that don't require a special build environment
|
|
|
|
check: check_posix_sitl_default qgc_firmware alt_firmware checks_bootloaders tests check_format
|
2016-12-30 19:11:59 -04:00
|
|
|
|
2016-09-20 16:05:44 -03:00
|
|
|
# quick_check builds a single nuttx and posix target, runs testing, and checks the style
|
2017-01-14 10:38:28 -04:00
|
|
|
quick_check: check_posix_sitl_default check_px4fmu-v3_default tests check_format
|
|
|
|
|
|
|
|
check_%:
|
|
|
|
@echo
|
|
|
|
$(call colorecho,"Building" $(subst check_,,$@))
|
|
|
|
@$(MAKE) --no-print-directory $(subst check_,,$@)
|
|
|
|
@echo
|
|
|
|
|
2017-04-06 17:06:11 -03:00
|
|
|
# Documentation
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
.PHONY: parameters_markdown
|
|
|
|
|
|
|
|
parameters_markdown: posix_sitl_default
|
|
|
|
@python $(SRC_DIR)/Tools/px_process_params.py -s $(SRC_DIR)/src --markdown
|
|
|
|
|
2017-01-14 10:38:28 -04:00
|
|
|
# S3 upload helpers
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
# s3cmd uses these ENV variables
|
|
|
|
# AWS_ACCESS_KEY_ID
|
|
|
|
# AWS_SECRET_ACCESS_KEY
|
|
|
|
# AWS_S3_BUCKET
|
|
|
|
.PHONY: s3put_firmware s3put_qgc_firmware
|
|
|
|
|
|
|
|
Firmware.zip:
|
|
|
|
@rm -rf Firmware.zip
|
2017-01-26 20:41:48 -04:00
|
|
|
@zip --junk-paths Firmware.zip `find . -name \*.px4`
|
2017-01-14 10:38:28 -04:00
|
|
|
|
|
|
|
s3put_firmware: Firmware.zip
|
|
|
|
$(SRC_DIR)/Tools/s3put.sh Firmware.zip
|
|
|
|
|
|
|
|
s3put_qgc_firmware: qgc_firmware
|
|
|
|
@$(SRC_DIR)/Tools/s3put.sh $(SRC_DIR)/build_px4fmu-v3_default/airframes.xml
|
|
|
|
@$(SRC_DIR)/Tools/s3put.sh $(SRC_DIR)/build_px4fmu-v3_default/parameters.xml
|
|
|
|
@find $(SRC_DIR)/build_* -name "*.px4" -exec $(SRC_DIR)/Tools/s3put.sh "{}" \;
|
|
|
|
|
2017-04-06 17:06:11 -03:00
|
|
|
s3put_parameters_markdown: parameters_markdown
|
|
|
|
@$(SRC_DIR)/Tools/s3put.sh parameters.md
|
|
|
|
|
2017-01-14 10:38:28 -04:00
|
|
|
# Astyle
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
.PHONY: check_format format
|
2016-03-12 15:59:21 -04:00
|
|
|
|
2015-10-06 16:26:19 -03:00
|
|
|
check_format:
|
2016-04-17 18:18:26 -03:00
|
|
|
$(call colorecho,"Checking formatting with astyle")
|
2017-01-14 10:38:28 -04:00
|
|
|
@$(SRC_DIR)/Tools/check_code_style_all.sh
|
2016-09-20 13:45:42 -03:00
|
|
|
@git diff --check
|
2015-10-06 16:26:19 -03:00
|
|
|
|
2016-08-05 23:23:32 -03:00
|
|
|
format:
|
|
|
|
$(call colorecho,"Formatting with astyle")
|
2017-01-14 10:38:28 -04:00
|
|
|
@$(SRC_DIR)/Tools/check_code_style_all.sh --fix
|
2016-08-05 23:23:32 -03:00
|
|
|
|
2017-01-14 10:38:28 -04:00
|
|
|
# Testing
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
.PHONY: unittest run_tests_posix tests tests_coverage
|
2016-04-17 18:18:26 -03:00
|
|
|
|
2016-07-29 08:27:58 -03:00
|
|
|
unittest: posix_sitl_default
|
2016-12-30 19:11:59 -04:00
|
|
|
$(call cmake-build,unittest,$(SRC_DIR)/unittests)
|
2016-04-24 19:48:56 -03:00
|
|
|
@(cd build_unittest && ctest -j2 --output-on-failure)
|
2016-06-22 18:42:49 -03:00
|
|
|
|
2016-12-31 17:34:07 -04:00
|
|
|
run_tests_posix:
|
2017-01-08 14:45:28 -04:00
|
|
|
$(MAKE) --no-print-directory posix_sitl_default test_results
|
2016-03-12 15:05:43 -04:00
|
|
|
|
2017-01-08 14:45:28 -04:00
|
|
|
tests: unittest run_tests_posix
|
2016-06-14 02:06:43 -03:00
|
|
|
|
2016-12-04 20:10:24 -04:00
|
|
|
tests_coverage:
|
2017-01-08 14:45:28 -04:00
|
|
|
@lcov --zerocounters --directory $(SRC_DIR) --quiet
|
|
|
|
@lcov --capture --initial --directory $(SRC_DIR) --quiet --output-file coverage.info
|
|
|
|
@$(MAKE) --no-print-directory unittest PX4_CODE_COVERAGE=1 CCACHE_DISABLE=1
|
|
|
|
@$(MAKE) --no-print-directory posix_sitl_default test_results PX4_CODE_COVERAGE=1 CCACHE_DISABLE=1
|
|
|
|
@lcov --no-checksum --directory $(SRC_DIR) --capture --quiet --output-file coverage.info
|
|
|
|
@lcov --remove coverage.info '/usr/*' 'unittests/googletest/*' --quiet --output-file coverage.info
|
|
|
|
@genhtml --legend --show-details --function-coverage --quiet --output-directory coverage-html coverage.info
|
|
|
|
@$(MAKE) --no-print-directory posix_sitl_default test_results_junit
|
2016-12-04 20:10:24 -04:00
|
|
|
|
2017-01-14 10:38:28 -04:00
|
|
|
|
|
|
|
|
|
|
|
# Clang analyzers
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
.PHONY: scan-build clang-check clang-tidy
|
|
|
|
|
2017-01-01 23:42:01 -04:00
|
|
|
scan-build:
|
2017-01-02 01:56:48 -04:00
|
|
|
@export CCACHE_DISABLE=1
|
|
|
|
@mkdir -p $(SRC_DIR)/build_posix_sitl_default_scan-build
|
|
|
|
@cd $(SRC_DIR)/build_posix_sitl_default_scan-build && scan-build cmake .. -GNinja -DCONFIG=posix_sitl_default
|
|
|
|
@scan-build cmake --build $(SRC_DIR)/build_posix_sitl_default_scan-build
|
|
|
|
|
|
|
|
clang-check:
|
|
|
|
@CC=clang CXX=clang++ $(MAKE) --no-print-directory posix_sitl_default
|
|
|
|
@$(SRC_DIR)/Tools/clang-tool.sh -b build_posix_sitl_default -t clang-check
|
|
|
|
|
|
|
|
clang-tidy:
|
2017-01-29 19:45:05 -04:00
|
|
|
rm -rf $(SRC_DIR)/build_posix_sitl_default
|
|
|
|
@CC=clang CXX=clang++ $(MAKE) --no-print-directory posix_sitl_default
|
|
|
|
@$(SRC_DIR)/Tools/clang-tool.sh -b build_posix_sitl_default -t clang-tidy
|
|
|
|
|
|
|
|
clang-tidy-parallel:
|
2017-01-14 13:53:04 -04:00
|
|
|
rm -rf $(SRC_DIR)/build_posix_sitl_default
|
2017-01-02 01:56:48 -04:00
|
|
|
@CC=clang CXX=clang++ $(MAKE) --no-print-directory posix_sitl_default
|
2017-01-29 21:41:59 -04:00
|
|
|
@$(SRC_DIR)/Tools/run-clang-tidy.py -j$(j) -p $(SRC_DIR)/build_posix_sitl_default
|
2017-01-14 13:53:04 -04:00
|
|
|
|
|
|
|
clang-tidy-fix:
|
|
|
|
rm -rf $(SRC_DIR)/build_posix_sitl_default
|
|
|
|
@CC=clang CXX=clang++ $(MAKE) --no-print-directory posix_sitl_default
|
|
|
|
@run-clang-tidy.py -fix -j$(j) -p $(SRC_DIR)/build_posix_sitl_default
|
2017-01-01 23:42:01 -04:00
|
|
|
|
2017-01-14 10:38:28 -04:00
|
|
|
# Cleanup
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
.PHONY: clean submodulesclean distclean
|
2016-03-12 16:55:42 -04:00
|
|
|
|
2015-09-11 20:39:57 -03:00
|
|
|
clean:
|
2017-01-14 10:38:28 -04:00
|
|
|
@rm -rf $(SRC_DIR)/build_*/
|
|
|
|
-@$(MAKE) --no-print-directory -C NuttX/nuttx clean
|
2015-10-14 07:13:20 -03:00
|
|
|
|
2016-03-12 15:15:23 -04:00
|
|
|
submodulesclean:
|
2017-04-17 21:57:35 -03:00
|
|
|
@git submodule foreach --quiet --recursive git clean -ff -x -d
|
|
|
|
@git submodule update --quiet --init --recursive --force || true
|
2016-06-03 17:48:30 -03:00
|
|
|
@git submodule sync --recursive
|
2016-03-12 15:15:23 -04:00
|
|
|
@git submodule update --init --recursive --force
|
|
|
|
|
2017-04-17 21:57:35 -03:00
|
|
|
submodulesupdate:
|
|
|
|
@git submodule update --quiet --init --recursive || true
|
|
|
|
@git submodule sync --recursive
|
|
|
|
@git submodule update --init --recursive
|
|
|
|
|
2017-02-19 08:35:11 -04:00
|
|
|
gazeboclean:
|
|
|
|
@rm -rf ~/.gazebo/*
|
|
|
|
|
|
|
|
distclean: submodulesclean gazeboclean
|
2016-11-15 04:22:24 -04:00
|
|
|
@git clean -ff -x -d -e ".project" -e ".cproject" -e ".idea"
|
2016-03-12 15:15:23 -04:00
|
|
|
|
2017-01-14 10:38:28 -04:00
|
|
|
# --------------------------------------------------------------------
|
|
|
|
|
2016-09-17 20:44:45 -03:00
|
|
|
# All other targets are handled by PX4_MAKE. Add a rule here to avoid printing an error.
|
|
|
|
%:
|
|
|
|
$(if $(filter $(FIRST_ARG),$@), \
|
|
|
|
$(error "$@ cannot be the first argument. Use '$(MAKE) help|list_config_targets' to get a list of all possible [configuration] targets."),@#)
|
2015-09-11 20:39:57 -03:00
|
|
|
|
|
|
|
CONFIGS:=$(shell ls cmake/configs | sed -e "s~.*/~~" | sed -e "s~\..*~~")
|
|
|
|
|
|
|
|
#help:
|
|
|
|
# @echo
|
|
|
|
# @echo "Type 'make ' and hit the tab key twice to see a list of the available"
|
|
|
|
# @echo "build configurations."
|
|
|
|
# @echo
|
2016-09-17 20:44:45 -03:00
|
|
|
|
|
|
|
empty :=
|
|
|
|
space := $(empty) $(empty)
|
|
|
|
|
|
|
|
# Print a list of non-config targets (based on http://stackoverflow.com/a/26339924/1487069)
|
|
|
|
help:
|
|
|
|
@echo "Usage: $(MAKE) <target>"
|
|
|
|
@echo "Where <target> is one of:"
|
|
|
|
@$(MAKE) -pRrq -f $(lastword $(MAKEFILE_LIST)) : 2>/dev/null | \
|
|
|
|
awk -v RS= -F: '/^# File/,/^# Finished Make data base/ {if ($$1 !~ "^[#.]") {print $$1}}' | sort | \
|
|
|
|
egrep -v -e '^[^[:alnum:]]' -e '^($(subst $(space),|,$(ALL_CONFIG_TARGETS) $(NUTTX_CONFIG_TARGETS)))$$' -e '_default$$' -e '^(posix|eagle|Makefile)'
|
|
|
|
@echo
|
|
|
|
@echo "Or, $(MAKE) <config_target> [<make_target(s)>]"
|
|
|
|
@echo "Use '$(MAKE) list_config_targets' for a list of configuration targets."
|
|
|
|
|
|
|
|
# Print a list of all config targets.
|
|
|
|
list_config_targets:
|
|
|
|
@for targ in $(patsubst nuttx_%,[nuttx_]%,$(ALL_CONFIG_TARGETS)); do echo $$targ; done
|