From a12470f7a7316fff9e061c23514ae3777c8b6e74 Mon Sep 17 00:00:00 2001 From: Oleg Semyonov Date: Wed, 10 Apr 2013 10:01:03 +0300 Subject: [PATCH] makefile: if all_fw or all_flight are requested, gcs will depend on opfw_resource --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index d18a66497..957f7b748 100644 --- a/Makefile +++ b/Makefile @@ -755,8 +755,8 @@ $(OPFW_RESOURCE): $(FW_TARGETS) $(V1) $(MKDIR) -p $(dir $@) $(V1) $(ECHO) $(QUOTE)$(OPFW_CONTENTS)$(QUOTE) > $@ -# If opfw_resource or all are requested, GCS should depend on the resource -ifneq ($(strip $(filter opfw_resource all,$(MAKECMDGOALS))),) +# If opfw_resource or all firmware are requested, GCS should depend on the resource +ifneq ($(strip $(filter opfw_resource all all_fw all_flight,$(MAKECMDGOALS))),) $(eval openpilotgcs: | opfw_resource) endif