summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Axelrod <victora@marvell.com>2017-06-20 19:20:45 +0300
committerKostya Porotchkin <kostap@marvell.com>2017-06-21 10:55:41 +0300
commitb182cfca0c19f2842646e4407d4f804ee4906a69 (patch)
tree4dee694bfaf6bd8f57f3cbcd9c05cc336c65a64c
parentf56b8c7721b6c5cd0023d638b9028088927eda84 (diff)
ble: makefile: force mv_ddr dir visit and allow parallel build
This patch forces to visit mv_ddr directory making mv_ddr changes to be visible to the build system, and allows to build mv_ddr in parallel. Change-Id: I2a198b0ce577bcc425b74beef143cf81a66367fe Signed-off-by: Victor Axelrod <victora@marvell.com> Reviewed-on: http://vgitil04.il.marvell.com:8080/40638 Tested-by: iSoC Platform CI <ykjenk@marvell.com> Reviewed-by: Kostya Porotchkin <kostap@marvell.com>
-rw-r--r--ble/ble.mk6
1 files changed, 4 insertions, 2 deletions
diff --git a/ble/ble.mk b/ble/ble.mk
index 5df42e41..ba4e2310 100644
--- a/ble/ble.mk
+++ b/ble/ble.mk
@@ -45,5 +45,7 @@ PLAT_INCLUDES += -I$(MV_DDR_PATH) \
BLE_LINKERFILE := ble/ble.ld.S
-$(MV_DDR_LIB):
- @make -C $(MV_DDR_PATH) --no-print-directory PLAT_INCLUDES="$(PLAT_INCLUDES)" PLATFORM=$(PLAT) ARCH=AARCH64 OBJ_DIR=$(CURDIR)/$(BUILD_PLAT)/ble
+FORCE:
+
+$(MV_DDR_LIB): FORCE
+ @+make -C $(MV_DDR_PATH) --no-print-directory PLAT_INCLUDES="$(PLAT_INCLUDES)" PLATFORM=$(PLAT) ARCH=AARCH64 OBJ_DIR=$(CURDIR)/$(BUILD_PLAT)/ble