aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorThomas Gubler <thomasgubler@gmail.com>2015-01-06 19:14:57 +0100
committerThomas Gubler <thomasgubler@gmail.com>2015-01-06 19:14:57 +0100
commitee561947e9100f64a206216104e3ce83e8a304ca (patch)
tree435b85b92fddada2fc1253524de112d38df71bc1 /Makefile
parent5056b03ab00a11c3705a97edb9bbfc13a32130dd (diff)
downloadpx4-firmware-ee561947e9100f64a206216104e3ce83e8a304ca.tar.gz
px4-firmware-ee561947e9100f64a206216104e3ce83e8a304ca.tar.bz2
px4-firmware-ee561947e9100f64a206216104e3ce83e8a304ca.zip
makefile: fix order
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b800459cb..37ba35fed 100644
--- a/Makefile
+++ b/Makefile
@@ -104,7 +104,10 @@ DESIRED_FIRMWARES = $(foreach config,$(CONFIGS),$(IMAGE_DIR)$(config).px4)
STAGED_FIRMWARES = $(foreach config,$(KNOWN_CONFIGS),$(IMAGE_DIR)$(config).px4)
FIRMWARES = $(foreach config,$(KNOWN_CONFIGS),$(BUILD_DIR)$(config).build/firmware.px4)
-all: checksubmodules generateuorbtopicheaders $(DESIRED_FIRMWARES)
+all:
+ $(Q) $(MAKE) checksubmodules
+ $(Q) $(MAKE) generateuorbtopicheaders
+ $(Q) $(MAKE) $(DESIRED_FIRMWARES)
#
# Copy FIRMWARES into the image directory.