From 1532338847a1dc769b3856e97a4e237a4e533bb6 Mon Sep 17 00:00:00 2001 From: Stacey Sheldon Date: Tue, 7 Feb 2012 02:06:39 -0500 Subject: [PATCH] ef: fix dependencies in entire flash image build ef_$(BOARD_NAME).bin files were not properly depending on their fw and bl files resulting in the ef files not being regenerated. --- flight/EntireFlash/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flight/EntireFlash/Makefile b/flight/EntireFlash/Makefile index 2124a18ba..1a20317b1 100644 --- a/flight/EntireFlash/Makefile +++ b/flight/EntireFlash/Makefile @@ -33,8 +33,8 @@ OUTDIR := $(TOP)/build/$(TARGET) .PHONY: bin bin: $(OUTDIR)/$(TARGET).bin -$(OUTDIR)/$(TARGET).bin: BL_BIN := $(TOP)/build/bl_$(BOARD_NAME)/bl_$(BOARD_NAME).bin -$(OUTDIR)/$(TARGET).bin: FW_BIN := $(TOP)/build/fw_$(BOARD_NAME)/fw_$(BOARD_NAME).bin +BL_BIN = $(TOP)/build/bl_$(BOARD_NAME)/bl_$(BOARD_NAME).bin +FW_BIN = $(TOP)/build/fw_$(BOARD_NAME)/fw_$(BOARD_NAME).bin $(OUTDIR)/$(TARGET).bin: $(BL_BIN) $(FW_BIN) $(V0) @echo " FLASH IMG $@" $(V1) cat $(BL_BIN) $(FW_BIN) > $@