From dca2d0ee66d9054318592ce798ec44d032e944b9 Mon Sep 17 00:00:00 2001 From: Stacey Sheldon Date: Sun, 27 May 2012 21:51:29 -0400 Subject: [PATCH] makefile: filter out unbuildable targets for SimPosix --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 5c299e3d1..bf4974908 100644 --- a/Makefile +++ b/Makefile @@ -648,6 +648,12 @@ EF_BOARDS := $(ALL_BOARDS) # filter them out to prevent errors. BU_BOARDS := $(filter-out revolution, $(BU_BOARDS)) +# SimPosix doesn't have a BL, BU or EF target so we need to +# filter them out to prevent errors on the all_flight target. +BL_BOARDS := $(filter-out simposix, $(BL_BOARDS)) +BU_BOARDS := $(filter-out simposix, $(BU_BOARDS)) +EF_BOARDS := $(filter-out simposix, $(EF_BOARDS)) + # Generate the targets for whatever boards are left in each list FW_TARGETS := $(addprefix fw_, $(FW_BOARDS)) BL_TARGETS := $(addprefix bl_, $(BL_BOARDS))