mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-22 01:12:31 +00:00
NuttX is still the default target and all NuttX configs can still be built with: make Individual NuttX, POSIX, and QuRT configs can now be built more easily by specifying the target and configs: make posix posix_default make qurt qurt_hello make nuttx aerocore_default Running make with just the target will make all the configs for that target: make nuttx make qurt make posix The help is also target specific: make nuttx help make qurt help make posix help "make help" will still assume you want help for the NuttX target Added a new QuRT config called qurt_hello as a sample config to test buiding in different commands for separate configs. Signed-off-by: Mark Charlebois <charlebm@gmail.com>
74 lines
1.4 KiB
Makefile
74 lines
1.4 KiB
Makefile
#
|
|
# Makefile for the Foo *default* configuration
|
|
#
|
|
|
|
#
|
|
# Board support modules
|
|
#
|
|
MODULES += drivers/device
|
|
#MODULES += drivers/blinkm
|
|
#MODULES += drivers/hil
|
|
#MODULES += drivers/led
|
|
#MODULES += drivers/rgbled
|
|
#MODULES += modules/sensors
|
|
#MODULES += drivers/ms5611
|
|
|
|
#
|
|
# System commands
|
|
#
|
|
MODULES += systemcmds/param
|
|
|
|
#
|
|
# General system control
|
|
#
|
|
#MODULES += modules/mavlink
|
|
|
|
#
|
|
# Estimation modules (EKF/ SO3 / other filters)
|
|
#
|
|
#MODULES += modules/attitude_estimator_ekf
|
|
#MODULES += modules/ekf_att_pos_estimator
|
|
|
|
#
|
|
# Vehicle Control
|
|
#
|
|
#MODULES += modules/mc_att_control
|
|
|
|
#
|
|
# Library modules
|
|
#
|
|
MODULES += modules/systemlib
|
|
#MODULES += modules/systemlib/mixer
|
|
MODULES += modules/uORB
|
|
#MODULES += modules/dataman
|
|
#MODULES += modules/sdlog2
|
|
#MODULES += modules/simulator
|
|
#MODULES += modules/commander
|
|
|
|
#
|
|
# Libraries
|
|
#
|
|
#MODULES += lib/mathlib
|
|
#MODULES += lib/mathlib/math/filter
|
|
#MODULES += lib/geo
|
|
#MODULES += lib/geo_lookup
|
|
#MODULES += lib/conversion
|
|
|
|
#
|
|
# QuRT port
|
|
#
|
|
MODULES += platforms/qurt/px4_layer
|
|
#MODULES += platforms/posix/drivers/accelsim
|
|
#MODULES += platforms/posix/drivers/gyrosim
|
|
#MODULES += platforms/posix/drivers/adcsim
|
|
#MODULES += platforms/posix/drivers/barosim
|
|
|
|
#
|
|
# Unit tests
|
|
#
|
|
MODULES += platforms/qurt/tests/hello
|
|
#MODULES += platforms/posix/tests/vcdev_test
|
|
#MODULES += platforms/posix/tests/hrt_test
|
|
#MODULES += platforms/posix/tests/wqueue
|
|
|