diff options
author | jwang36 <jwang36@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-12-31 06:06:11 +0000 |
---|---|---|
committer | jwang36 <jwang36@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-12-31 06:06:11 +0000 |
commit | a388ec434a78ac0c5c1032962d61ddfaf3548198 (patch) | |
tree | ad462c149101f727dd7971bb33c7f7be1e919bff /BaseTools/Conf | |
parent | 2eab98c10703872dc125fa641da82acbf99b947d (diff) | |
download | edk2-platforms-a388ec434a78ac0c5c1032962d61ddfaf3548198.tar.xz |
Updated the macro description according to the latest changes in build tool.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7159 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'BaseTools/Conf')
-rw-r--r-- | BaseTools/Conf/build_rule.template | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/BaseTools/Conf/build_rule.template b/BaseTools/Conf/build_rule.template index d3b8e7ccc3..9f49d44261 100644 --- a/BaseTools/Conf/build_rule.template +++ b/BaseTools/Conf/build_rule.template @@ -64,6 +64,7 @@ # $(BIN_DIR) Common directory for executable files
# $(FV_DIR) Directory to store flash image files
# $(INC) Search path of current module
+# $(INC_LIST) A file containing search pathes of current module
# $(LIBS) Static library files of current module
# $(<tool>_FLAGS) Tools flags of current module
# $(MODULE_NAME) Current module name
@@ -73,9 +74,17 @@ # $(TARGET) Target of current module (DEBUG/RELEASE)
# $(<tool>) Path of tool
# $(EDK_TOOLS_PATH) Path of build tools
-# $(<FILE_TYPE_LIST>) File list of each file type
+# $(<FILE_TYPES>) File list of each file type
# (Note: The macro name is derived from file type name. For example,
-# C-Code-File will have C_CODE_FILE_LIST macro.)
+# C-Code-File will have C_CODE_FILES macro.)
+# $(<FILE_TYPES_LIST>) Macro point to a file containing list of files of a file type
+# (
+# Note: The macro and file name are derived from file type name.
+# For example, C-Code-File will have C_CODE_FILES_LIST macro pointing
+# to $(OUTPUT_DIR)/c_code_files.lst. The list file and macro name
+# will be generated only when this macro is used in command line.
+# This is intended to get over the long command line limitation.
+# )
#
# $(CP) copy command
# $(MV) move command
|