2015-09-10 22:15:55 -03:00
|
|
|
############################################################################
|
|
|
|
#
|
|
|
|
# Copyright (c) 2015 PX4 Development Team. All rights reserved.
|
|
|
|
#
|
|
|
|
# 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),)
|
|
|
|
$(error YOU HAVE TO USE GIT TO DOWNLOAD THIS REPOSITORY. ABORTING.)
|
|
|
|
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-06 15:57:55 -03:00
|
|
|
# disable ninja by default for now because it hides upload progress
|
|
|
|
#NINJA_BUILD := $(shell ninja --version 2>/dev/null)
|
|
|
|
ifdef NINJA_BUILD
|
|
|
|
PX4_CMAKE_GENERATOR ?= "Ninja"
|
|
|
|
PX4_MAKE = ninja
|
|
|
|
PX4_MAKE_ARGS =
|
|
|
|
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-14 12:05:51 -03:00
|
|
|
+@if [ ! -e $(PWD)/build_$@/CMakeCache.txt ]; then git submodule update --init --recursive --force && mkdir -p $(PWD)/build_$@ && cd $(PWD)/build_$@ && cmake .. -G$(PX4_CMAKE_GENERATOR) -DCONFIG=$(1); fi
|
2015-10-06 15:57:55 -03:00
|
|
|
+$(PX4_MAKE) -C $(PWD)/build_$@ $(PX4_MAKE_ARGS) $(ARGS)
|
2015-09-11 20:39:57 -03:00
|
|
|
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
|
|
|
|
|
|
|
# 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)
|
|
|
|
|
2015-10-14 12:05:51 -03:00
|
|
|
px4fmu-v2_simple:
|
2015-09-11 20:39:57 -03:00
|
|
|
$(call cmake-build,nuttx_px4fmu-v2_simple)
|
2015-05-22 17:22:12 -03:00
|
|
|
|
2015-09-11 20:39:57 -03:00
|
|
|
nuttx_sim_simple:
|
|
|
|
$(call cmake-build,$@)
|
2015-06-15 21:23:04 -03:00
|
|
|
|
2015-09-11 20:39:57 -03:00
|
|
|
posix_sitl_simple:
|
|
|
|
$(call cmake-build,$@)
|
2015-09-11 01:15:33 -03:00
|
|
|
|
2015-09-25 09:29:35 -03:00
|
|
|
ros_sitl_simple:
|
|
|
|
$(call cmake-build,$@)
|
|
|
|
|
2015-09-11 20:39:57 -03:00
|
|
|
qurt_eagle_travis:
|
|
|
|
$(call cmake-build,$@)
|
|
|
|
|
2015-09-12 10:44:05 -03:00
|
|
|
posix: posix_sitl_simple
|
|
|
|
|
2015-10-19 16:48:33 -03:00
|
|
|
posix_sitl_default: posix_sitl_simple
|
|
|
|
|
2015-09-25 09:29:35 -03:00
|
|
|
ros: ros_sitl_simple
|
|
|
|
|
2015-09-20 07:53:56 -03:00
|
|
|
run_sitl_quad: posix
|
2015-10-17 12:41:57 -03:00
|
|
|
Tools/sitl_run.sh posix-configs/SITL/init/rcS none jmavsim
|
2015-09-12 10:44:05 -03:00
|
|
|
|
2015-10-17 08:30:44 -03:00
|
|
|
run_sitl_iris: posix
|
|
|
|
Tools/sitl_run.sh posix-configs/SITL/init/rcS_iris_gazebo
|
|
|
|
|
2015-09-20 07:53:56 -03:00
|
|
|
run_sitl_plane: posix
|
2015-09-12 10:44:05 -03:00
|
|
|
Tools/sitl_run.sh posix-configs/SITL/init/rc.fixed_wing
|
|
|
|
|
2015-09-20 07:53:56 -03:00
|
|
|
run_sitl_ros: posix
|
2015-09-12 10:44:05 -03:00
|
|
|
Tools/sitl_run.sh posix-configs/SITL/init/rc_iris_ros
|
|
|
|
|
2015-09-20 07:53:56 -03:00
|
|
|
lldb_sitl_quad: posix
|
2015-10-17 12:41:57 -03:00
|
|
|
Tools/sitl_run.sh posix-configs/SITL/init/rcS lldb jmavsim
|
2015-09-20 07:53:56 -03:00
|
|
|
|
|
|
|
lldb_sitl_plane: posix
|
|
|
|
Tools/sitl_run.sh posix-configs/SITL/init/rc.fixed_wing lldb
|
|
|
|
|
|
|
|
lldb_sitl_ros: posix
|
|
|
|
Tools/sitl_run.sh posix-configs/SITL/init/rc_iris_ros lldb
|
|
|
|
|
2015-09-20 11:40:53 -03:00
|
|
|
gdb_sitl_quad: posix
|
2015-10-17 12:41:57 -03:00
|
|
|
Tools/sitl_run.sh posix-configs/SITL/init/rcS gdb jmavsim
|
2015-09-20 11:40:53 -03:00
|
|
|
|
|
|
|
gdb_sitl_plane: posix
|
|
|
|
Tools/sitl_run.sh posix-configs/SITL/init/rc.fixed_wing lldb
|
|
|
|
|
|
|
|
gdb_sitl_ros: posix
|
|
|
|
Tools/sitl_run.sh posix-configs/SITL/init/rc_iris_ros lldb
|
|
|
|
|
2015-09-20 07:53:56 -03:00
|
|
|
sitl_quad:
|
|
|
|
@echo "Deprecated. Use 'run_sitl_quad' instead."
|
|
|
|
|
|
|
|
sitl_plane:
|
|
|
|
@echo "Deprecated. Use 'run_sitl_plane' instead."
|
|
|
|
|
|
|
|
sitl_ros:
|
|
|
|
@echo "Deprecated. Use 'run_sitl_ros' instead."
|
|
|
|
|
2015-09-11 20:39:57 -03:00
|
|
|
# Other targets
|
|
|
|
# --------------------------------------------------------------------
|
2015-10-06 16:26:19 -03:00
|
|
|
check_format:
|
|
|
|
@./Tools/check_code_style.sh
|
|
|
|
|
2015-09-11 20:39:57 -03:00
|
|
|
clean:
|
2015-10-02 06:04:32 -03:00
|
|
|
@rm -rf build_*/
|
2015-10-14 12:05:51 -03:00
|
|
|
@(cd NuttX && git clean -d -f -x)
|
|
|
|
@(cd src/modules/uavcan/libuavcan && git clean -d -f -x)
|
2015-10-14 07:13:20 -03:00
|
|
|
|
2015-09-11 20:39:57 -03:00
|
|
|
# targets handled by cmake
|
2015-10-06 13:10:23 -03:00
|
|
|
cmake_targets = test upload package package_source debug debug_tui debug_ddd debug_io debug_io_tui debug_io_ddd check_weak libuavcan
|
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~\..*~~")
|
|
|
|
|
|
|
|
# Future:
|
|
|
|
#$(CONFIGS):
|
|
|
|
## @cd Build/$@ && cmake ../.. -DCONFIG=$@
|
|
|
|
# @cd Build/$@ && make
|
|
|
|
#
|
|
|
|
#clean-all:
|
|
|
|
# @rm -rf Build/*
|
|
|
|
#
|
|
|
|
#help:
|
|
|
|
# @echo
|
|
|
|
# @echo "Type 'make ' and hit the tab key twice to see a list of the available"
|
|
|
|
# @echo "build configurations."
|
|
|
|
# @echo
|