aboutsummaryrefslogtreecommitdiff
path: root/makefiles/firmware.mk
diff options
context:
space:
mode:
authorpx4dev <px4@purgatory.org>2013-01-16 22:38:47 -0800
committerpx4dev <px4@purgatory.org>2013-02-23 22:00:59 -0800
commit8440e4f70907e87661e295f1585208620d68b84e (patch)
tree5c47927a0acce504bec96bb8158fe5949e4ce6bb /makefiles/firmware.mk
parente9f2197bfa40522d6a58e01888dada4531d9dbcf (diff)
downloadpx4-firmware-8440e4f70907e87661e295f1585208620d68b84e.tar.gz
px4-firmware-8440e4f70907e87661e295f1585208620d68b84e.tar.bz2
px4-firmware-8440e4f70907e87661e295f1585208620d68b84e.zip
Simplify the PLATFORM/CONFIG handling a little.
Diffstat (limited to 'makefiles/firmware.mk')
-rw-r--r--makefiles/firmware.mk6
1 files changed, 5 insertions, 1 deletions
diff --git a/makefiles/firmware.mk b/makefiles/firmware.mk
index c85c5c919..cde646036 100644
--- a/makefiles/firmware.mk
+++ b/makefiles/firmware.mk
@@ -74,11 +74,15 @@ RMDIR = rm -rf
#
# Sanity-check the PLATFORM variable and then get the platform config.
+# If PLATFORM is not set, but CONFIG is, use that.
#
# The platform config in turn will fetch the toolchain configuration.
#
ifeq ($(PLATFORM),)
-$(error The PLATFORM variable must be set before including firmware.mk)
+ifeq ($(CONFIG),)
+$(error At least one of the PLATFORM or CONFIG variables must be set before including firmware.mk)
+endif
+PLATFORM := $(firstword $(subst _, ,$(CONFIG)))
endif
include $(PX4_MK_INCLUDE)/$(PLATFORM).mk