forked from Archive/PX4-Autopilot
98 lines
3.6 KiB
Makefile
98 lines
3.6 KiB
Makefile
############################################################################
|
|
#
|
|
# 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.
|
|
#
|
|
############################################################################
|
|
|
|
# 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.
|
|
|
|
# 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))
|
|
|
|
# Functions
|
|
# --------------------------------------------------------------------
|
|
# define a make function to describe how to build a cmake config
|
|
define cmake-build
|
|
mkdir -p $(PWD)/build_$@ && cd $(PWD)/build_$@ && \
|
|
cmake .. -DCMAKE_TOOLCHAIN_FILE=../cmake/toolchains/$(1).cmake \
|
|
-DOS=$(2) -DBOARD=$(3) -DLABEL=$(4) && \
|
|
make -s $(ARGS)
|
|
endef
|
|
|
|
|
|
# ADD CONFIGS HERE
|
|
# --------------------------------------------------------------------
|
|
# Do not put any spaces between function arguments.
|
|
|
|
px4fmu-v2_default:
|
|
$(call cmake-build,Toolchain-arm-none-eabi,nuttx,px4fmu-v2,default)
|
|
|
|
px4fmu-v2_simple:
|
|
$(call cmake-build,Toolchain-arm-none-eabi,nuttx,px4fmu-v2,default)
|
|
|
|
nuttx_sim_simple:
|
|
$(call cmake-build,Toolchain-native,nuttx,sim,default)
|
|
|
|
posix_sitl_simple:
|
|
$(call cmake-build,Toolchain-posix-clang-native,posix,sitl,simple)
|
|
|
|
qurt_eagle_travis:
|
|
$(call cmake-build,Toolchain-hexagon,qurt,eagle,travis)
|
|
|
|
|
|
# Other targets
|
|
# --------------------------------------------------------------------
|
|
# explicity set default build target
|
|
all: px4fmu-v2_default
|
|
|
|
clean:
|
|
rm -rf build_*/
|
|
|
|
.PHONY: clean
|