summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Nelson <sam.nelson@ti.com>2016-12-12 11:48:53 -0500
committerAngela Stegmaier <angelabaker@ti.com>2016-12-15 10:23:03 -0600
commitcff640a4c7e083f78116266ef681cec49d9b584b (patch)
tree94c122c98c5024cd814dcd8c89822d6ac0b7d65f
parent39f4676ab809e8992c7598636cda0b8dd5956493 (diff)
downloadipc-3.44.tar.gz
make: Update to build interfaces first3.44.01.01ipc-3.44-next3.44
This change is aimed to avoid parallel build issues, due to interfaces not built. Signed-off-by: Sam Nelson <sam.nelson@ti.com>
-rw-r--r--ipc-bios.mak6
1 files changed, 5 insertions, 1 deletions
diff --git a/ipc-bios.mak b/ipc-bios.mak
index 55ef734..8cab297 100644
--- a/ipc-bios.mak
+++ b/ipc-bios.mak
@@ -139,12 +139,16 @@ all:
# build everything in the Bios IPC package
@$(XDC) -P $(LIST)
+interfaces:
+ @echo building interfaces for ipc packages ...
+ @$(patsubst ${JOBS},,$(XDC)) .interfaces -P $(LIST)
+
libs:
@echo "#"
@echo "# Making $@ ..."
@$(XDC) .dlls -P $(patsubst %/tests,,$(LIST))
-release:
+release: interfaces
@echo building ipc packages ...
# create a XDC release for the Bios IPC package
@$(XDC) release -P $(LIST)