diff options
author | Liming Gao <liming.gao@intel.com> | 2015-06-08 09:44:57 +0000 |
---|---|---|
committer | lgao4 <lgao4@Edk2> | 2015-06-08 09:44:57 +0000 |
commit | 49b0a79388aba447d904f203ba2a421ada03a1f4 (patch) | |
tree | e058e86812e97c8b972e16ba4f876530553ee76f | |
parent | b74d65ed3a5c973766b44f081ceba2d6a269c0a6 (diff) | |
download | edk2-49b0a79388aba447d904f203ba2a421ada03a1f4.zip edk2-49b0a79388aba447d904f203ba2a421ada03a1f4.tar.gz edk2-49b0a79388aba447d904f203ba2a421ada03a1f4.tar.bz2 |
BaseTools: Update BuildRule for *.nasmb
*.nasmb is place of *.asm16. To keep the same output file, copy the output
file with .com postfix.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
Reviewed-by: Yingke Liu <yingke.d.liu@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17580 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | BaseTools/Conf/build_rule.template | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/BaseTools/Conf/build_rule.template b/BaseTools/Conf/build_rule.template index e5467cc..3b054c4 100644 --- a/BaseTools/Conf/build_rule.template +++ b/BaseTools/Conf/build_rule.template @@ -1,5 +1,5 @@ #
-# Copyright (c) 2007 - 2014, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2007 - 2015, Intel Corporation. All rights reserved.<BR>
# Portions copyright (c) 2008 - 2010, Apple Inc. All rights reserved.<BR>
# This program and the accompanying materials
# are licensed and made available under the terms and conditions of the BSD License
@@ -491,7 +491,8 @@ "$(PP)" $(PP_FLAGS) $(INC) ${src} > ${d_path}(+)${s_base}.i
Trim --source-code --convert-hex -o ${d_path}(+)${s_base}.iii ${d_path}(+)${s_base}.i
"$(NASM)" -I${s_path}(+) -l ${d_path}(+)${s_base}.lst $(NASMB_FLAGS) -o $dst ${d_path}(+)${s_base}.iii
-
+ # copy the output file with .com postfix that be same to the output file of .asm16
+ $(CP) ${dst} $(OUTPUT_DIR)(+)${s_base}.com
[Microcode-File.USER_DEFINED, Microcode-File.Microcode]
<InputFile>
|