summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 6165053)
raw | patch | inline | side by side (parent: 6165053)
author | Sinthu Raja M <x0257345@ti.com> | |
Mon, 2 Jul 2018 18:21:05 +0000 (23:51 +0530) | ||
committer | Sinthu Raja M <x0257345@ti.com> | |
Mon, 2 Jul 2018 20:09:28 +0000 (01:39 +0530) |
Added RULES_MAKE macro to support build based on custom Rules.make
location
location
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)");