author | Raghu Nambiath <a0850439@ti.com> | |
Mon, 2 Jul 2018 21:50:01 +0000 (16:50 -0500) | ||
committer | Raghu Nambiath <a0850439@ti.com> | |
Mon, 2 Jul 2018 21:50:01 +0000 (16:50 -0500) |
build/buildlib.xs | patch | blob | history |
diff --git a/build/buildlib.xs b/build/buildlib.xs
index f9aadb7029242370052982081621557b0c825848..afe46c18620fccdf65b91930ced2ad306f40bdf0 100755 (executable)
--- a/build/buildlib.xs
+++ b/build/buildlib.xs
* This file contains common routines that are used by the various RM
* components.
*
- * Copyright (C) 2012-2015, Texas Instruments, Inc.
+ * Copyright (C) 2012-2018, Texas Instruments, Inc.
*****************************************************************************/
/**************************************************************************
makefile.writeLine("\n# ROOT Directory");
makefile.writeLine("export ROOTDIR := "+pkgroot);
+ makefile.writeLine("\n# Include Rules.make");
+ makefile.writeLine("ifndef PDK_INSTALL_DIR_RECIPE");
+ makefile.writeLine("ifeq ($(RULES_MAKE),)");
+ makefile.writeLine("include $(PDK_INSTALL_PATH)/ti/build/Rules.make");
+ makefile.writeLine("else");
+ makefile.writeLine("include $(RULES_MAKE)");
+ makefile.writeLine("endif");
+ makefile.writeLine("endif");
+
makefile.writeLine("\n# INCLUDE Directory");
makefile.writeLine("export INCDIR := "+getxdcpath+";$(ROOTDIR)");