2015-09-10 22:15:55 -03:00
|
|
|
############################################################################
|
|
|
|
#
|
2016-03-11 07:30:41 -04:00
|
|
|
# Copyright (c) 2015 - 2016 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
|
|
|
|
|
|
|
|
CMAKE_VER := $(shell Tools/check_cmake.sh; echo $$?)
|
|
|
|
ifneq ($(CMAKE_VER),0)
|
|
|
|
$(warning Not a valid CMake version or CMake not installed.)
|
|
|
|
$(warning On Ubuntu, install or upgrade via:)
|
|
|
|
$(warning )
|
2015-10-28 16:16:40 -03:00
|
|
|
$(warning 3rd party PPA:)
|
2015-10-26 06:19:30 -03:00
|
|
|
$(warning sudo add-apt-repository ppa:george-edison55/cmake-3.x -y)
|
|
|
|
$(warning sudo apt-get update)
|
|
|
|
$(warning sudo apt-get install cmake)
|
|
|
|
$(warning )
|
2015-10-28 16:16:40 -03:00
|
|
|
$(warning Official website:)
|
|
|
|
$(warning wget https://cmake.org/files/v3.3/cmake-3.3.2-Linux-x86_64.sh)
|
|
|
|
$(warning chmod +x cmake-3.3.2-Linux-x86_64.sh)
|
|
|
|
$(warning sudo mkdir /opt/cmake-3.3.2)
|
|
|
|
$(warning sudo ./cmake-3.3.2-Linux-x86_64.sh --prefix=/opt/cmake-3.3.2 --exclude-subdir)
|
|
|
|
$(warning export PATH=/opt/cmake-3.3.2/bin:$$PATH)
|
|
|
|
$(warning )
|
2015-10-26 06:19:30 -03:00
|
|
|
$(error Fatal)
|
2015-10-11 07:04:34 -03:00
|
|
|
endif
|
2015-09-10 15:08:03 -03:00
|
|
|
|
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
|
|
|
|
all: px4fmu-v2_default
|
|
|
|
|
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
|
|
|
|
ARGS := $(wordlist 2,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS))
|
2015-09-13 15:31:58 -03:00
|
|
|
j ?= 4
|
2015-09-11 20:39:57 -03:00
|
|
|
|
2015-10-25 07:20:28 -03:00
|
|
|
NINJA_BUILD := $(shell ninja --version 2>/dev/null)
|
2015-10-06 15:57:55 -03:00
|
|
|
ifdef NINJA_BUILD
|
|
|
|
PX4_CMAKE_GENERATOR ?= "Ninja"
|
|
|
|
PX4_MAKE = ninja
|
2015-10-25 07:20:28 -03:00
|
|
|
PX4_MAKE_ARGS =
|
2015-10-06 15:57:55 -03:00
|
|
|
else
|
2015-10-12 12:10:13 -03:00
|
|
|
|
|
|
|
ifdef SYSTEMROOT
|
|
|
|
# Windows
|
|
|
|
PX4_CMAKE_GENERATOR ?= "MSYS Makefiles"
|
|
|
|
else
|
|
|
|
PX4_CMAKE_GENERATOR ?= "Unix Makefiles"
|
|
|
|
endif
|
2015-10-06 15:57:55 -03:00
|
|
|
PX4_MAKE = make
|
|
|
|
PX4_MAKE_ARGS = -j$(j) --no-print-directory
|
|
|
|
endif
|
|
|
|
|
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
|
2015-10-25 13:28:00 -03:00
|
|
|
+@if [ $(PX4_CMAKE_GENERATOR) = "Ninja" ] && [ -e $(PWD)/build_$@/Makefile ]; then rm -rf $(PWD)/build_$@; fi
|
2016-03-11 06:59:49 -04:00
|
|
|
+@if [ ! -e $(PWD)/build_$@/CMakeCache.txt ]; then Tools/check_submodules.sh && mkdir -p $(PWD)/build_$@ && cd $(PWD)/build_$@ && cmake .. -G$(PX4_CMAKE_GENERATOR) -DCONFIG=$(1) || (cd .. && rm -rf $(PWD)/build_$@); fi
|
2016-03-11 07:07:39 -04:00
|
|
|
+@Tools/check_submodules.sh
|
2016-04-17 18:18:26 -03:00
|
|
|
+@(echo "PX4 CONFIG: $@" && cd $(PWD)/build_$@ && $(PX4_MAKE) $(PX4_MAKE_ARGS) $(ARGS))
|
2015-09-11 20:39:57 -03:00
|
|
|
endef
|
|
|
|
|
2016-04-24 19:48:56 -03:00
|
|
|
define cmake-build-other
|
|
|
|
+@if [ $(PX4_CMAKE_GENERATOR) = "Ninja" ] && [ -e $(PWD)/build_$@/Makefile ]; then rm -rf $(PWD)/build_$@; fi
|
|
|
|
+@if [ ! -e $(PWD)/build_$@/CMakeCache.txt ]; then Tools/check_submodules.sh && mkdir -p $(PWD)/build_$@ && cd $(PWD)/build_$@ && cmake $(2) -G$(PX4_CMAKE_GENERATOR) || (cd .. && rm -rf $(PWD)/build_$@); fi
|
|
|
|
+@(cd $(PWD)/build_$@ && $(PX4_MAKE) $(PX4_MAKE_ARGS) $(ARGS))
|
|
|
|
endef
|
|
|
|
|
2015-09-13 15:31:58 -03:00
|
|
|
# create empty targets to avoid msgs for targets passed to cmake
|
|
|
|
define cmake-targ
|
|
|
|
$(1):
|
|
|
|
@#
|
|
|
|
.PHONY: $(1)
|
|
|
|
endef
|
2015-09-11 20:39:57 -03:00
|
|
|
|
2016-04-17 18:18:26 -03:00
|
|
|
define colorecho
|
|
|
|
@tput setaf 6
|
|
|
|
@echo $1
|
|
|
|
@tput sgr0
|
|
|
|
endef
|
|
|
|
|
2015-09-11 20:39:57 -03:00
|
|
|
# ADD CONFIGS HERE
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
# Do not put any spaces between function arguments.
|
|
|
|
|
2015-10-14 12:05:51 -03:00
|
|
|
px4fmu-v1_default:
|
2015-10-03 12:25:49 -03:00
|
|
|
$(call cmake-build,nuttx_px4fmu-v1_default)
|
|
|
|
|
2015-10-14 12:05:51 -03:00
|
|
|
px4fmu-v2_default:
|
2015-09-11 20:39:57 -03:00
|
|
|
$(call cmake-build,nuttx_px4fmu-v2_default)
|
2016-04-22 16:15:37 -03:00
|
|
|
|
|
|
|
px4fmu-v2_test:
|
|
|
|
$(call cmake-build,nuttx_px4fmu-v2_test)
|
2015-09-11 20:39:57 -03:00
|
|
|
|
2015-11-18 10:50:53 -04:00
|
|
|
px4fmu-v4_default:
|
|
|
|
$(call cmake-build,nuttx_px4fmu-v4_default)
|
2015-11-13 18:39:00 -04:00
|
|
|
|
2015-10-21 17:22:55 -03:00
|
|
|
px4-stm32f4discovery_default:
|
|
|
|
$(call cmake-build,nuttx_px4-stm32f4discovery_default)
|
|
|
|
|
2016-01-02 12:17:27 -04:00
|
|
|
px4fmu-v2_ekf2:
|
|
|
|
$(call cmake-build,nuttx_px4fmu-v2_ekf2)
|
2015-05-22 17:22:12 -03:00
|
|
|
|
2016-03-12 00:50:14 -04:00
|
|
|
mindpx-v2_default:
|
|
|
|
$(call cmake-build,nuttx_mindpx-v2_default)
|
|
|
|
|
2015-10-24 16:13:21 -03:00
|
|
|
posix_sitl_default:
|
2015-09-11 20:39:57 -03:00
|
|
|
$(call cmake-build,$@)
|
2015-09-11 01:15:33 -03:00
|
|
|
|
2016-04-23 03:20:11 -03:00
|
|
|
posix_sitl_test:
|
|
|
|
$(call cmake-build,$@)
|
|
|
|
|
2016-01-28 17:28:02 -04:00
|
|
|
posix_sitl_replay:
|
|
|
|
$(call cmake-build,$@)
|
|
|
|
|
2016-04-17 16:54:37 -03:00
|
|
|
posix_sitl_broadcast:
|
|
|
|
$(call cmake-build,$@)
|
|
|
|
|
2015-10-24 16:13:21 -03:00
|
|
|
ros_sitl_default:
|
2016-01-24 10:21:17 -04:00
|
|
|
@echo "This target is deprecated. Use make 'posix_sitl_default gazebo' instead."
|
2015-09-25 09:29:35 -03:00
|
|
|
|
2015-09-11 20:39:57 -03:00
|
|
|
qurt_eagle_travis:
|
|
|
|
$(call cmake-build,$@)
|
|
|
|
|
2016-01-02 04:30:51 -04:00
|
|
|
qurt_eagle_default:
|
|
|
|
$(call cmake-build,$@)
|
|
|
|
|
2016-04-15 21:38:24 -03:00
|
|
|
posix_eagle_default:
|
|
|
|
$(call cmake-build,$@)
|
|
|
|
|
2016-04-01 06:36:27 -03:00
|
|
|
eagle_default: posix_eagle_default qurt_eagle_default
|
2016-05-05 23:51:13 -03:00
|
|
|
eagle_legacy_default: posix_eagle_legacy_driver_default qurt_eagle_legacy_driver_default
|
2016-04-01 06:36:27 -03:00
|
|
|
|
2016-04-15 21:38:24 -03:00
|
|
|
qurt_eagle_legacy_driver_default:
|
|
|
|
$(call cmake-build,$@)
|
|
|
|
|
|
|
|
posix_eagle_legacy_driver_default:
|
|
|
|
$(call cmake-build,$@)
|
2016-02-23 11:26:57 -04:00
|
|
|
|
2016-05-02 18:53:24 -03:00
|
|
|
qurt_excelsior_default:
|
|
|
|
$(call cmake-build,$@)
|
2016-05-05 04:11:29 -03:00
|
|
|
|
2016-05-02 18:53:24 -03:00
|
|
|
posix_excelsior_default:
|
|
|
|
$(call cmake-build,$@)
|
2016-05-05 04:11:29 -03:00
|
|
|
|
2016-05-02 18:53:24 -03:00
|
|
|
excelsior_default: posix_excelsior_default qurt_excelsior_default
|
2016-05-05 04:11:29 -03:00
|
|
|
|
2016-01-17 07:04:11 -04:00
|
|
|
posix_rpi2_default:
|
|
|
|
$(call cmake-build,$@)
|
2016-01-02 04:30:51 -04:00
|
|
|
|
2016-01-17 12:06:50 -04:00
|
|
|
posix_rpi2_release:
|
|
|
|
$(call cmake-build,$@)
|
|
|
|
|
2016-05-31 08:04:22 -03:00
|
|
|
posix_bebop_default:
|
|
|
|
$(call cmake-build,$@)
|
|
|
|
|
2015-10-24 16:13:21 -03:00
|
|
|
posix: posix_sitl_default
|
2015-09-25 09:29:35 -03:00
|
|
|
|
2016-04-17 16:54:37 -03:00
|
|
|
broadcast: posix_sitl_broadcast
|
|
|
|
|
2015-10-24 11:57:46 -03:00
|
|
|
sitl_deprecation:
|
2015-10-27 18:15:19 -03:00
|
|
|
@echo "Deprecated. Use 'make posix_sitl_default jmavsim' or"
|
|
|
|
@echo "'make posix_sitl_default gazebo' if Gazebo is preferred."
|
2015-09-20 07:53:56 -03:00
|
|
|
|
2015-10-24 16:13:21 -03:00
|
|
|
run_sitl_quad: sitl_deprecation
|
|
|
|
run_sitl_plane: sitl_deprecation
|
|
|
|
run_sitl_ros: sitl_deprecation
|
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
|
|
|
|
2016-04-24 19:48:56 -03:00
|
|
|
.PHONY: gazebo_build uavcan_firmware check check_format unittest tests package_firmware clean submodulesclean distclean
|
|
|
|
.NOTPARALLEL: gazebo_build uavcan_firmware check check_format unittest tests package_firmware clean submodulesclean distclean
|
|
|
|
|
|
|
|
gazebo_build:
|
|
|
|
@mkdir -p build_gazebo
|
|
|
|
@if [ ! -e $(PWD)/build_gazebo/CMakeCache.txt ];then cd build_gazebo && cmake -Wno-dev -G$(PX4_CMAKE_GENERATOR) $(PWD)/Tools/sitl_gazebo; fi
|
|
|
|
@cd build_gazebo && $(PX4_MAKE) $(PX4_MAKE_ARGS)
|
|
|
|
@cd build_gazebo && $(PX4_MAKE) $(PX4_MAKE_ARGS) sdf
|
2016-04-17 18:18:26 -03:00
|
|
|
|
2016-03-12 15:59:21 -04:00
|
|
|
uavcan_firmware:
|
2016-04-17 18:18:26 -03:00
|
|
|
ifeq ($(VECTORCONTROL),1)
|
|
|
|
$(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 && ../Tools/uavcan_copy.sh)
|
|
|
|
endif
|
|
|
|
|
2016-05-25 17:24:01 -03:00
|
|
|
checks_defaults: \
|
|
|
|
check_px4fmu-v1_default \
|
|
|
|
check_px4fmu-v2_default \
|
|
|
|
check_mindpx-v2_default \
|
|
|
|
check_px4-stm32f4discovery_default \
|
|
|
|
|
|
|
|
checks_bootloaders: \
|
|
|
|
|
|
|
|
|
|
|
|
checks_tests: \
|
|
|
|
check_px4fmu-v2_test
|
|
|
|
|
|
|
|
checks_alts: \
|
|
|
|
check_px4fmu-v2_ekf2 \
|
|
|
|
|
|
|
|
checks_uavcan: \
|
|
|
|
check_px4fmu-v4_default_and_uavcan
|
|
|
|
|
|
|
|
checks_sitls: \
|
|
|
|
check_posix_sitl_default \
|
|
|
|
check_posix_sitl_test \
|
|
|
|
|
|
|
|
checks_last: \
|
|
|
|
check_unittest \
|
|
|
|
check_format \
|
|
|
|
|
|
|
|
check: checks_defaults checks_tests checks_alts checks_uavcan checks_bootloaders checks_sitls checks_last
|
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")
|
2016-04-17 17:17:07 -03:00
|
|
|
@./Tools/fix_code_style.sh
|
2016-04-21 18:29:49 -03:00
|
|
|
@./Tools/check_code_style_all.sh
|
2015-10-06 16:26:19 -03:00
|
|
|
|
2016-04-17 18:18:26 -03:00
|
|
|
check_%:
|
|
|
|
@echo
|
|
|
|
$(call colorecho,"Building" $(subst check_,,$@))
|
|
|
|
@$(MAKE) --no-print-directory $(subst check_,,$@)
|
|
|
|
@echo
|
|
|
|
|
|
|
|
check_px4fmu-v4_default: uavcan_firmware
|
|
|
|
check_px4fmu-v4_default_and_uavcan: check_px4fmu-v4_default
|
|
|
|
@echo
|
|
|
|
ifeq ($(VECTORCONTROL),1)
|
|
|
|
@echo "Cleaning up vectorcontrol firmware"
|
|
|
|
@rm -rf vectorcontrol
|
|
|
|
@rm -rf ROMFS/px4fmu_common/uavcan
|
|
|
|
endif
|
2016-03-12 15:05:43 -04:00
|
|
|
|
2016-04-24 14:26:27 -03:00
|
|
|
unittest: posix_sitl_test
|
2016-04-24 20:32:32 -03:00
|
|
|
@export CC=clang
|
|
|
|
@export CXX=clang++
|
|
|
|
@export ASAN_OPTIONS=symbolize=1
|
2016-04-24 19:48:56 -03:00
|
|
|
$(call cmake-build-other,unittest, ../unittests)
|
|
|
|
@(cd build_unittest && ctest -j2 --output-on-failure)
|
|
|
|
|
|
|
|
test_onboard_sitl:
|
|
|
|
@HEADLESS=1 make posix_sitl_test gazebo_iris
|
2016-03-12 15:05:43 -04:00
|
|
|
|
2016-03-12 16:55:42 -04:00
|
|
|
package_firmware:
|
|
|
|
@zip --junk-paths Firmware.zip `find . -name \*.px4`
|
|
|
|
|
2015-09-11 20:39:57 -03:00
|
|
|
clean:
|
2015-10-02 06:04:32 -03:00
|
|
|
@rm -rf build_*/
|
2016-03-11 06:59:49 -04:00
|
|
|
@(cd NuttX/nuttx && make clean)
|
2015-10-14 07:13:20 -03:00
|
|
|
|
2016-03-12 15:15:23 -04:00
|
|
|
submodulesclean:
|
2016-06-03 17:48:30 -03:00
|
|
|
@git submodule sync --recursive
|
2016-05-05 00:21:17 -03:00
|
|
|
@git submodule deinit -f .
|
2016-03-12 15:15:23 -04:00
|
|
|
@git submodule update --init --recursive --force
|
|
|
|
|
|
|
|
distclean: submodulesclean
|
2016-06-03 17:50:26 -03:00
|
|
|
@git clean -ff -x -d -e ".project" -e ".cproject"
|
2016-03-12 15:15:23 -04:00
|
|
|
|
2015-09-11 20:39:57 -03:00
|
|
|
# targets handled by cmake
|
2015-10-24 11:57:46 -03:00
|
|
|
cmake_targets = test upload package package_source debug debug_tui debug_ddd debug_io debug_io_tui debug_io_ddd check_weak \
|
2016-01-28 17:28:02 -04:00
|
|
|
run_cmake_config config gazebo gazebo_gdb gazebo_lldb jmavsim replay \
|
2016-02-07 08:00:03 -04:00
|
|
|
jmavsim_gdb jmavsim_lldb gazebo_gdb_iris gazebo_lldb_tailsitter gazebo_iris gazebo_iris_opt_flow gazebo_tailsitter \
|
2016-03-11 11:39:56 -04:00
|
|
|
gazebo_gdb_standard_vtol gazebo_lldb_standard_vtol gazebo_standard_vtol gazebo_plane
|
2015-09-13 15:31:58 -03:00
|
|
|
$(foreach targ,$(cmake_targets),$(eval $(call cmake-targ,$(targ))))
|
2015-09-11 20:39:57 -03:00
|
|
|
|
2015-09-13 15:31:58 -03:00
|
|
|
.PHONY: clean
|
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
|