diff options
author | jwang36 <jwang36@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-08-22 09:29:30 +0000 |
---|---|---|
committer | jwang36 <jwang36@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-08-22 09:29:30 +0000 |
commit | d60db640558b78d9598c6d9c00935963c67d7188 (patch) | |
tree | 714e1398a6869bd5416b20f2becddd38cec581be /BaseTools/Conf | |
parent | 8fe48751743be69d747b1e18c9be09a94f614302 (diff) | |
download | edk2-platforms-d60db640558b78d9598c6d9c00935963c67d7188.tar.xz |
Fixed incremental link issue, which dependent libraries were not taken into account.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@3689 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'BaseTools/Conf')
-rw-r--r-- | BaseTools/Conf/build_rule.template | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/BaseTools/Conf/build_rule.template b/BaseTools/Conf/build_rule.template index 1fa5228438..bca246c3e0 100644 --- a/BaseTools/Conf/build_rule.template +++ b/BaseTools/Conf/build_rule.template @@ -17,14 +17,14 @@ # "*" is used to indicate that the source files will be processed at the same time.
# "?" is used to indicate that the source files will be processed one by one.
#
-# "[" Build.<File-Type>[.<version>][, Build.<File-Type>[.<version>]] "]"
-# <InputFile[.<ToolChainFamily>]>
+# "[" Build.<File-Type>[.<version>][, Build.<File-Type>[.<version>]] "]" <EOL>
+# <InputFile[.<ToolChainFamily>]> <EOL>
# [File-Type =] (?|*).<File-Extension> [(\n|,|;) (?|*).<File-Extension>]
#
-# <OutputFile[.<ToolChainFamily>]>
+# <OutputFile[.<ToolChainFamily>]> <EOL>
# <FileFullPath>
#
-# <Command[.<ToolChainFamily>]>
+# <Command[.<ToolChainFamily>]> <EOL>
# <Command1>
# [<Command2>]
#
@@ -196,6 +196,7 @@ [Build.Static-Library-File]
<InputFile>
?.lib
+ $(LIBS)
<OutputFile>
$(DEBUG_DIR)(+)$(MODULE_NAME).dll
|