summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSinthu Raja M2018-05-23 05:20:23 -0500
committerSinthu Raja M2018-05-23 05:20:23 -0500
commit93ae27b2359980997c82db8f8b1d60746979304e (patch)
treeb38210be8a7a594052e13e683413076ebf142633
parenteb0c8dbd6a440b663865ade2293826d0eb20e73a (diff)
downloadmcbsp-lld-93ae27b2359980997c82db8f8b1d60746979304e.tar.gz
mcbsp-lld-93ae27b2359980997c82db8f8b1d60746979304e.tar.xz
mcbsp-lld-93ae27b2359980997c82db8f8b1d60746979304e.zip
PRSDK-2194 Added RULES_MAKE macro
Added RULES_MAKE macro to support build based on custom Rules.make location
-rw-r--r--makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/makefile b/makefile
index 9515b01..ed314b9 100644
--- a/makefile
+++ b/makefile
@@ -30,7 +30,11 @@
30# EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 30# EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31# 31#
32 32
33ifeq ($(RULES_MAKE), )
33include $(PDK_INSTALL_PATH)/ti/build/Rules.make 34include $(PDK_INSTALL_PATH)/ti/build/Rules.make
35else
36include $(RULES_MAKE)
37endif
34 38
35COMP = drvmcbsp 39COMP = drvmcbsp
36 40