mirror of https://github.com/acidanthera/audk.git
Re-designed build_rule.template and updated build.exe to support the new format
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@3677 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
46d9097615
commit
dce323a67c
Binary file not shown.
|
@ -1,296 +1,298 @@
|
|||
# file extention : file type
|
||||
FileTypeMapping = {
|
||||
".c" : "C-Code",
|
||||
".C" : "C-Code",
|
||||
".cpp" : "C-Code",
|
||||
".Cpp" : "C-Code",
|
||||
".CPP" : "C-Code",
|
||||
".h" : "C-Header",
|
||||
".H" : "C-Header",
|
||||
".inc" : "Masm-Header",
|
||||
".asm" : "Masm-Code",
|
||||
".Asm" : "Masm-Code",
|
||||
".ASM" : "Masm-Code",
|
||||
".asm16" : "Masm16-Code", #RealAsm16 Link Code
|
||||
".Asm16" : "Masm16-Code",
|
||||
".ASM16" : "Masm16-Code",
|
||||
".s" : "Iasm-Code", # IPF assembly code
|
||||
".S" : "Gasm-Code", # GNU assembly code
|
||||
".uni" : "Unicode-Text",
|
||||
".Uni" : "Unicode-Text",
|
||||
".UNI" : "Unicode-Text",
|
||||
".vfr" : "Visual-Form-Representation",
|
||||
".Vfr" : "Visual-Form-Representation",
|
||||
".VFR" : "Visual-Form-Representation",
|
||||
".dxs" : "Dependency-Expression",
|
||||
".Dxs" : "Dependency-Expression",
|
||||
".DXS" : "Dependency-Expression",
|
||||
".TXT" : "MicorCode-Text",
|
||||
".txt" : "MicorCode-Text",
|
||||
".fv" : "FirmwareVolume",
|
||||
".Fv" : "FirmwareVolume",
|
||||
".FV" : "FirmwareVolume",
|
||||
".efi" : "Efi-Image",
|
||||
".Efi" : "Efi-Image",
|
||||
".EFI" : "Efi-Image",
|
||||
".SEC" : "Firmware-File-System",
|
||||
".PEI" : "Firmware-File-System",
|
||||
".DXE" : "Firmware-File-System",
|
||||
".APP" : "Firmware-File-System",
|
||||
".FYI" : "Firmware-File-System",
|
||||
".FFS" : "Firmware-File-System",
|
||||
".bmp" : "Bmp-Image",
|
||||
".i" : "Preprocessed-Code",
|
||||
".asl" : "Acpi-Source-Language",
|
||||
".Asl" : "Acpi-Source-Language",
|
||||
".ASL" : "Acpi-Source-Language",
|
||||
".aslc" : "Acpi-Table-Source",
|
||||
".obj" : "Object",
|
||||
".o" : "Object",
|
||||
".lib" : "Static-Library",
|
||||
".a" : "Static-Library",
|
||||
".dll" : "Dynamic-Library",
|
||||
".so" : "Dynamic-Library",
|
||||
}
|
||||
|
||||
ObjectFileMapping = {
|
||||
"C-Code" : ".obj",
|
||||
# "C-Header" : ".gch",
|
||||
"Masm-Code" : ".obj",
|
||||
"Iasm-Code" : ".obj", # IPF assembly code
|
||||
"Gasm-Code" : ".obj", # GNU assembly code
|
||||
"Visual-Form-Representation" : ".obj",
|
||||
"Preprocessed-Code" : ".obj",
|
||||
"Object" : ".dll",
|
||||
"Static-Library" : ".dll",
|
||||
"Dynamic-Library" : ".efi",
|
||||
"Dependency-Expression" : ".depex",
|
||||
"Acpi-Source-Language" : ".aml",
|
||||
"Acpi-Table-Source" : ".acpi",
|
||||
"Masm16-Code" : ".com",
|
||||
"MicorCode-Text" : ".bin",
|
||||
}
|
||||
|
||||
DefaultToolCode = ["CC", "ASM", "SLINK", "DLINK", "PCH", "PP", "ASL", "ASMLINK"]
|
||||
|
||||
ToolCodeMapping = {
|
||||
"C-Code" : ["CC"],
|
||||
# "C-Header" : ["PCH"],
|
||||
"Masm-Code" : ["PP", "ASM"],
|
||||
"Iasm-Code" : ["PP", "ASM"], # IPF assembly code
|
||||
"Gasm-Code" : ["ASM"], # GNU assembly code
|
||||
"Visual-Form-Representation" : ["PP", "CC"],
|
||||
"Preprocessed-Code" : ["CC"],
|
||||
"Acpi-Source-Language" : ["ASL"],
|
||||
"Object" : ["SLINK"],
|
||||
"Static-Library" : ["DLINK"],
|
||||
"Dependency-Expression" : ["PP"],
|
||||
"Acpi-Source-Language" : ["PP", "ASL"],
|
||||
"Acpi-Table-Source" : ["CC", "DLINK"],
|
||||
"Masm16-Code" : ["ASM", "ASMLINK"],
|
||||
"MicorCode-Text" : ["CC"],
|
||||
}
|
||||
|
||||
ToolChainFamilyMapping = {
|
||||
"C-Code" : ["MSFT", "INTEL", "GCC"],
|
||||
"C-Header" : ["MSFT", "INTEL", "GCC"],
|
||||
"Masm-Code" : ["MSFT", "INTEL"],
|
||||
"Iasm-Code" : ["MSFT", "INTEL"], # IPF assembly code
|
||||
"Gasm-Code" : ["GCC"], # GNU assembly code
|
||||
"Unicode-Text" : ["MSFT", "INTEL", "GCC"],
|
||||
"Visual-Form-Representation" : ["MSFT", "INTEL", "GCC"],
|
||||
"Dependency-Expression" : ["MSFT", "INTEL", "GCC"],
|
||||
"FirmwareVolume" : ["MSFT", "INTEL", "GCC"],
|
||||
"Efi-Image" : ["MSFT", "INTEL", "GCC"],
|
||||
"Firmware-File-System" : ["MSFT", "INTEL", "GCC"],
|
||||
"Bmp-Image" : ["MSFT", "INTEL", "GCC"],
|
||||
"Preprocessed-Code" : ["MSFT", "INTEL"],
|
||||
"Acpi-Source-Language" : ["MSFT", "INTEL"],
|
||||
"Acpi-Table-Source" : ["MSFT", "INTEL"],
|
||||
"Masm16-Code" : ["MSFT"],
|
||||
"MicorCode-Text" : ["MSFT", "INTEL"],
|
||||
}
|
||||
|
||||
## Build rules for makefile
|
||||
# Placeholders for string substitution
|
||||
# ${fpath} File path relative to $(WORKSPACE)
|
||||
# ${fdir} File relative directory within a module
|
||||
# ${fname} File full name without path
|
||||
# ${fbase} File name without extension and path
|
||||
# ${fext} File extension
|
||||
# ${fdep} File dependencies
|
||||
# ${_sep_} Directory separator
|
||||
# ${_of_} Output flag
|
||||
# ${_if_} Include flag
|
||||
#
|
||||
Makefile = {
|
||||
# MSFT tool chain family
|
||||
"MSFT" : {
|
||||
"C-Code" : '''\
|
||||
$(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.obj : $(COMMON_DEPS)
|
||||
${BEGIN}$(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.obj : $(WORKSPACE)${_sep_}${fdep}
|
||||
${END}\t"$(CC)" /Fo$@ $(CC_FLAGS) $(INC) $(WORKSPACE)${_sep_}${fpath}
|
||||
''',
|
||||
|
||||
"Masm-Code" : '''\
|
||||
$(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.obj : $(COMMON_DEPS)
|
||||
${BEGIN}$(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.obj : $(WORKSPACE)${_sep_}${fdep}
|
||||
${END}\t"$(PP)" $(PP_FLAGS) $(INC) $(WORKSPACE)${_sep_}${fpath} > $(@D)${_sep_}${fbase}.i
|
||||
\tTrim --source-code --convert-hex $(@D)${_sep_}${fbase}.i
|
||||
\t"$(ASM)" /Fo$@ $(ASM_FLAGS) $(INC) $(@D)${_sep_}${fbase}.iii
|
||||
''',
|
||||
|
||||
"Iasm-Code" : '''\
|
||||
$(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.obj : $(COMMON_DEPS)
|
||||
${BEGIN}$(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.obj : $(WORKSPACE)${_sep_}${fdep}
|
||||
${END}\t"$(APP)" $(APP_FLAGS) $(INC) $(WORKSPACE)${_sep_}${fpath} > $(@D)${_sep_}${fbase}.i
|
||||
\t"$(ASM)" -o $@ $(ASM_FLAGS) $(@D)${_sep_}${fbase}.i
|
||||
''',
|
||||
|
||||
"Visual-Form-Representation" : '''\
|
||||
$(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.obj : $(COMMON_DEPS)
|
||||
${BEGIN}$(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.obj : $(WORKSPACE)${_sep_}${fdep}
|
||||
${END}\t"$(PP)" $(VFRPP_FLAGS) $(INC) $(WORKSPACE)${_sep_}${fpath} > $(@D)${_sep_}${fbase}.i
|
||||
\tTrim --vfr-file $(@D)${_sep_}${fbase}.i
|
||||
\t-mkdir $(DEBUG_DIR)${_sep_}${fdir} > NUL 2>&1
|
||||
\tVfrCompile -od $(DEBUG_DIR)${_sep_}${fdir} $(@D)${_sep_}${fbase}.iii
|
||||
\t"$(CC)" /Fo$@ $(CC_FLAGS) $(INC) $(DEBUG_DIR)${_sep_}${fdir}${_sep_}${fbase}.c
|
||||
''',
|
||||
|
||||
"Acpi-Source-Language" :
|
||||
'''
|
||||
$(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.aml : $(COMMON_DEPS)
|
||||
${BEGIN}$(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.aml : $(WORKSPACE)${_sep_}${fdep}
|
||||
${END}\t"$(PP)" $(APP_FLAGS) $(INC) $(WORKSPACE)${_sep_}${fpath} > $(@D)${_sep_}${fbase}.i
|
||||
\tTrim --source-code $(@D)${_sep_}${fbase}.i
|
||||
\t"$(ASL)" -p $@ $(@D)${_sep_}${fbase}.iii
|
||||
\t-copy $(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.aml $(OUTPUT_DIR)${_sep_}${fbase}.aml /Y
|
||||
''',
|
||||
|
||||
"Acpi-Table-Source" :
|
||||
'''
|
||||
$(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.acpi : $(COMMON_DEPS)
|
||||
${BEGIN}$(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.acpi : $(WORKSPACE)${_sep_}${fdep}
|
||||
${END}\t"$(CC)" /Fo$(@D)${_sep_}${fbase}.obj $(CC_FLAGS) $(INC) $(WORKSPACE)${_sep_}${fpath}
|
||||
\t"$(DLINK)" $(@D)${_sep_}${fbase}.obj /out:$(@D)${_sep_}${fbase}.dll $(SLINK_FLAGS)
|
||||
\tGenFw -o $@ -c $(@D)${_sep_}${fbase}.dll
|
||||
\t-copy $(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.acpi $(OUTPUT_DIR)${_sep_}${fbase}.acpi /Y
|
||||
''',
|
||||
|
||||
"Masm16-Code" : '''\
|
||||
$(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.com : $(COMMON_DEPS)
|
||||
${BEGIN}$(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.com : $(WORKSPACE)${_sep_}${fdep}
|
||||
${END}\tpushd .
|
||||
\tcd $(OUTPUT_DIR)${_sep_}${fdir}
|
||||
\t"$(ASM)" /nologo /omf $(WORKSPACE)${_sep_}${fpath} /Bl"$(ASMLINK)" $(ASMLINK_FLAGS)
|
||||
\t-copy ${fbase}.com $(OUTPUT_DIR)${_sep_}${fbase}.com /Y & popd
|
||||
''',
|
||||
|
||||
"MicorCode-Text" : '''\
|
||||
$(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.bin : $(COMMON_DEPS)
|
||||
${BEGIN}$(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.bin : $(WORKSPACE)${_sep_}${fdep}
|
||||
${END}\tGenFw -o $@ -m $(WORKSPACE)${_sep_}${fpath}
|
||||
''',
|
||||
},
|
||||
|
||||
#
|
||||
# INTEL tool chain family
|
||||
#
|
||||
"INTEL" : {
|
||||
"C-Code" : '''\
|
||||
$(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.obj : $(COMMON_DEPS)
|
||||
${BEGIN}$(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.obj : $(WORKSPACE)${_sep_}${fdep}
|
||||
${END}\t"$(CC)" /Fo$@ $(CC_FLAGS) $(INC) $(WORKSPACE)${_sep_}${fpath}
|
||||
''',
|
||||
|
||||
"Masm-Code" : '''\
|
||||
$(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.obj : $(COMMON_DEPS)
|
||||
${BEGIN}$(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.obj : $(WORKSPACE)${_sep_}${fdep}
|
||||
${END}\t"$(PP)" $(PP_FLAGS) $(INC) $(WORKSPACE)${_sep_}${fpath} > $(@D)${_sep_}${fbase}.i
|
||||
\tTrim --source-code --convert-hex $(@D)${_sep_}${fbase}.i
|
||||
\t"$(ASM)" /Fo$@ $(ASM_FLAGS) $(INC) $(@D)${_sep_}${fbase}.iii
|
||||
''',
|
||||
|
||||
"Iasm-Code" : '''\
|
||||
$(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.obj : $(COMMON_DEPS)
|
||||
${BEGIN}$(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.obj : $(WORKSPACE)${_sep_}${fdep}
|
||||
${END}\t"$(APP)" $(APP_FLAGS) $(INC) $(WORKSPACE)${_sep_}${fpath} > $(@D)${_sep_}${fbase}.i
|
||||
\t"$(ASM)" -o $@ $(ASM_FLAGS) $(@D)${_sep_}${fbase}.i
|
||||
''',
|
||||
|
||||
"Visual-Form-Representation" : '''\
|
||||
$(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.obj : $(COMMON_DEPS)
|
||||
${BEGIN}$(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.obj : $(WORKSPACE)${_sep_}${fdep}
|
||||
${END}\t"$(PP)" $(VFRPP_FLAGS) $(INC) $(WORKSPACE)${_sep_}${fpath} > $(@D)${_sep_}${fbase}.i
|
||||
\tTrim --vfr-file $(@D)${_sep_}${fbase}.i
|
||||
\t-mkdir $(DEBUG_DIR)${_sep_}${fdir} > NUL 2>&1
|
||||
\tVfrCompile -od $(DEBUG_DIR)${_sep_}${fdir} $(@D)${_sep_}${fbase}.iii
|
||||
\t"$(CC)" /Fo$@ $(CC_FLAGS) $(INC) $(DEBUG_DIR)${_sep_}${fdir}${_sep_}${fbase}.c
|
||||
''',
|
||||
|
||||
"Acpi-Source-Language" :
|
||||
'''
|
||||
$(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.aml : $(COMMON_DEPS)
|
||||
${BEGIN}$(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.aml : $(WORKSPACE)${_sep_}${fdep}
|
||||
${END}\t"$(PP)" $(APP_FLAGS) $(INC) $(WORKSPACE)${_sep_}${fpath} > $(@D)${_sep_}${fbase}.i
|
||||
\t"$(ASL)" -p $@ $(@D)${_sep_}${fbase}.i
|
||||
\t-copy $(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.aml $(OUTPUT_DIR)${_sep_}${fbase}.aml /Y
|
||||
''',
|
||||
|
||||
"Acpi-Table-Source" :
|
||||
'''
|
||||
$(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.acpi : $(COMMON_DEPS)
|
||||
${BEGIN}$(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.acpi : $(WORKSPACE)${_sep_}${fdep}
|
||||
${END}\t"$(CC)" /Fo$(@D)${_sep_}${fbase}.obj $(CC_FLAGS) $(INC) $(WORKSPACE)${_sep_}${fpath}
|
||||
\t"$(DLINK)" $(@D)${_sep_}${fbase}.obj /out:$(@D)${_sep_}${fbase}.dll $(SLINK_FLAGS)
|
||||
\tGenFw -o $@ -c $(@D)${_sep_}${fbase}.dll
|
||||
\t-copy $(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.acpi $(OUTPUT_DIR)${_sep_}${fbase}.acpi /Y
|
||||
''',
|
||||
},
|
||||
|
||||
#
|
||||
# GCC tool chain family
|
||||
#
|
||||
"GCC" : {
|
||||
|
||||
"C-Code" :
|
||||
'''
|
||||
$(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.obj : $(COMMON_DEPS)
|
||||
${BEGIN}$(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.obj : $(WORKSPACE)${_sep_}${fdep}
|
||||
${END}\t"$(CC)" -o $@ $(CC_FLAGS) $(INC) $(WORKSPACE)${_sep_}${fpath}
|
||||
''',
|
||||
|
||||
"Gasm-Code" :
|
||||
'''
|
||||
$(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.obj : $(COMMON_DEPS)
|
||||
${BEGIN}$(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.obj : $(WORKSPACE)${_sep_}${fdep}
|
||||
${END}\t"$(ASM)" -o $@ $(ASM_FLAGS) $(INC) $(WORKSPACE)${_sep_}${fpath}
|
||||
''',
|
||||
|
||||
"Visual-Form-Representation" :
|
||||
'''
|
||||
$(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.obj : $(COMMON_DEPS)
|
||||
${BEGIN}$(OUTPUT_DIR)${_sep_}${fdir}${_sep_}${fbase}.obj : $(WORKSPACE)${_sep_}${fdep}
|
||||
${END}\t"$(PP)" $(VFRPP_FLAGS) $(INC) $(WORKSPACE)${_sep_}${fpath} -o $(@D)${_sep_}${fbase}.i
|
||||
\tTrim --vfr-file $(@D)${_sep_}${fbase}.i
|
||||
\t-mkdir $(DEBUG_DIR)${_sep_}${fdir} > NUL 2>&1
|
||||
\tVfrCompile -od $(DEBUG_DIR)${_sep_}${fdir} $(@D)${_sep_}${fbase}.iii
|
||||
\t"$(CC)" -o $@ $(CC_FLAGS) $(INC) $(DEBUG_DIR)${_sep_}${fdir}${_sep_}${fbase}.c
|
||||
''',
|
||||
}
|
||||
}
|
||||
|
||||
# This acts like the main() function for the script, unless it is 'import'ed into another
|
||||
# script.
|
||||
if __name__ == '__main__':
|
||||
for ext in FileTypeMapping:
|
||||
print ext,":",FileTypeMapping[ext]
|
||||
|
||||
for type in Makefile["nmake"]:
|
||||
print "[",type,"]\n",Makefile["nmake"][type]
|
||||
print
|
||||
|
||||
for type in Makefile["gmake"]:
|
||||
print "[",type,"]\n",Makefile["gmake"][type]
|
||||
print
|
||||
|
||||
#
|
||||
# Copyright (c) 2007, Intel Corporation
|
||||
#
|
||||
# All rights reserved. This program and the accompanying materials
|
||||
# are licensed and made available under the terms and conditions of the BSD License
|
||||
# which accompanies this distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
# Filename: build_rule.template
|
||||
#
|
||||
|
||||
## Syntax
|
||||
#
|
||||
# "*" 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>]>
|
||||
# [File-Type =] (?|*).<File-Extension> [(\n|,|;) (?|*).<File-Extension>]
|
||||
#
|
||||
# <OutputFile[.<ToolChainFamily>]>
|
||||
# <FileFullPath>
|
||||
#
|
||||
# <Command[.<ToolChainFamily>]>
|
||||
# <Command1>
|
||||
# [<Command2>]
|
||||
#
|
||||
|
||||
## Placeholders for string substitution
|
||||
#
|
||||
# ${src} Source file(s) to be built (full path)
|
||||
# ${s_path} Source file directory (absolute path)
|
||||
# ${s_dir} Source file relative directory within a module
|
||||
# (Note: ${s_dir} is always equals to "." if source file is given in absolute path.)
|
||||
# ${s_name} Source file name without path
|
||||
# ${s_base} Source file name without extension and path
|
||||
# ${s_ext} Source file extension
|
||||
#
|
||||
# ${dst} Destination file(s) built from ${src} (full path)
|
||||
# ${d_path} Destination file directory (absolute path)
|
||||
# ${d_name} Destination file name without path
|
||||
# ${d_base} Destination file name without extension and path
|
||||
# ${d_ext} Destination file extension
|
||||
#
|
||||
# (+) Directory separator
|
||||
#
|
||||
|
||||
## Macro
|
||||
# $(WORKSPACE) Workspace directory
|
||||
# $(OUTPUT_DIR) Directory for intermediate files for building a module
|
||||
# $(DEBUG_DIR) Directory for files used to debug a module
|
||||
# $(BUILD_DIR) All files for building a platform will be put in this directory
|
||||
# $(BIN_DIR) Common directory for executable files
|
||||
# $(FV_DIR) Directory to store flash image files
|
||||
# $(INC) Search path of current module
|
||||
# $(LIBS) Static library files of current module
|
||||
# $(<tool>_FLAGS) Tools flags of current module
|
||||
# $(MODULE_NAME) Current module name
|
||||
# $(MODULE_TYPE) Current module type
|
||||
# $(ARCH) Architecture of current module
|
||||
# $(TOOLCHAIN) Toolchain used to build current module
|
||||
# $(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
|
||||
# (Note: The macro name is derived from file type name. For example,
|
||||
# C-Code-File will have C_CODE_FILE_LIST macro.)
|
||||
#
|
||||
# $(CP) copy command
|
||||
# $(MV) move command
|
||||
# $(RM) delete command
|
||||
# $(MD) create dir command
|
||||
# $(RD) remove dir command
|
||||
#
|
||||
|
||||
## Reserved File-Type
|
||||
#
|
||||
# Dont't change following names of file types and their associated files,
|
||||
# which are also used in tools' code
|
||||
#
|
||||
# C-Code-File
|
||||
# C-Header-File
|
||||
# Dynamic-Library-File
|
||||
# Static-Library-File
|
||||
# Visual-Form-Representation-File
|
||||
# Unicode-Text-File
|
||||
#
|
||||
|
||||
[Build.C-Code-File]
|
||||
<InputFile>
|
||||
?.c
|
||||
?.C
|
||||
?.cc
|
||||
?.CC
|
||||
?.cpp
|
||||
?.Cpp
|
||||
?.CPP
|
||||
|
||||
<OutputFile>
|
||||
$(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.obj
|
||||
|
||||
<Command.MSFT, Command.INTEL>
|
||||
"$(CC)" /Fo${dst} $(CC_FLAGS) $(INC) ${src}
|
||||
|
||||
<Command.GCC>
|
||||
"$(CC)" -o ${dst} $(CC_FLAGS) $(INC) ${src}
|
||||
|
||||
[Build.C-Header-File]
|
||||
<InputFile>
|
||||
*.h, *.H
|
||||
|
||||
<OutputFile>
|
||||
$(OUTPUT_DIR)(+)$(MODULE_NAME).gch
|
||||
$(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.obj
|
||||
|
||||
<Command>
|
||||
|
||||
|
||||
[Build.Assembly-Code-File]
|
||||
<InputFile.MSFT, InputFile.INTEL>
|
||||
Assembly-Code-File = ?.asm, ?.Asm, ?.ASM
|
||||
|
||||
<InputFile.GCC>
|
||||
?.S
|
||||
|
||||
<OutputFile>
|
||||
$(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.obj
|
||||
|
||||
<Command.MSFT, Command.INTEL>
|
||||
"$(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
|
||||
"$(ASM)" /Fo${dst} $(ASM_FLAGS) $(INC) ${d_path}(+)${s_base}.iii
|
||||
|
||||
<Command.GCC>
|
||||
"$(ASM)" -o ${dst} $(ASM_FLAGS) $(INC) ${src}
|
||||
|
||||
[Build.Iasm-Code-File]
|
||||
<InputFile>
|
||||
?.s
|
||||
|
||||
<OutputFile>
|
||||
$(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.obj
|
||||
|
||||
<Command.MSFT, Command.INTEL>
|
||||
"$(APP)" $(APP_FLAGS) $(INC) ${src} > ${d_path}(+)${s_base}.i
|
||||
"$(ASM)" -o ${dst} $(ASM_FLAGS) ${d_path}(+)${s_base}.i
|
||||
|
||||
[Build.Visual-Form-Representation-File]
|
||||
<InputFile>
|
||||
?.vfr
|
||||
?.Vfr
|
||||
?.VFR
|
||||
|
||||
<OutputFile>
|
||||
$(DEBUG_DIR)(+)${s_dir}(+)${s_base}.c
|
||||
|
||||
<Command>
|
||||
"$(PP)" $(VFRPP_FLAGS) $(INC) ${src} > $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.i
|
||||
Trim --vfr-file -o $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.iii $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.i
|
||||
-mkdir ${d_path} > NUL 2>&1
|
||||
VfrCompile -od ${d_path} $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.iii
|
||||
|
||||
[Build.Object-File]
|
||||
<InputFile>
|
||||
*.obj
|
||||
*.o
|
||||
|
||||
<OutputFile>
|
||||
$(OUTPUT_DIR)(+)$(MODULE_NAME).lib
|
||||
|
||||
<Command.MSFT, Command.INTEL>
|
||||
"$(SLINK)" /OUT:${dst} $(SLINK_FLAGS) ${src}
|
||||
|
||||
<Command.GCC>
|
||||
"$(SLINK)" -cr ${dst} $(SLINK_FLAGS) ${src}
|
||||
|
||||
#[Build.Object-File, Build.Static-Library-File]
|
||||
#BUILD_VERSION = 0x00010000
|
||||
#
|
||||
# <InputFile>
|
||||
# Object-File = *.obj
|
||||
# Static-Library-File = *.lib, *.a
|
||||
#
|
||||
# <OutputFile>
|
||||
# $(OUTPUT_DIR)(+)$(MODULE_NAME).lib
|
||||
#
|
||||
# <Command.MSFT>
|
||||
# "$(SLINK)" /OUT:${dst} $(SLINK_FLAGS) ${src}
|
||||
#
|
||||
# <Command.GCC>
|
||||
# "$(SLINK)" -cr ${dst} $(SLINK_FLAGS) ${src1} -( ${src2} -)
|
||||
#
|
||||
[Build.Static-Library-File]
|
||||
<InputFile>
|
||||
?.lib
|
||||
|
||||
<OutputFile>
|
||||
$(DEBUG_DIR)(+)$(MODULE_NAME).dll
|
||||
|
||||
<Command.MSFT, Command.INTEL>
|
||||
"$(DLINK)" /OUT:${dst} $(DLINK_FLAGS) $(DLINK_SPATH) $(LIBS) ${src}
|
||||
|
||||
<Command.GCC>
|
||||
"$(DLINK)" -o ${dst} $(DLINK_FLAGS) -( $(DLINK_SPATH) $(LIBS) ${src} -)
|
||||
|
||||
[Build.Dynamic-Library-File]
|
||||
<InputFile>
|
||||
?.dll
|
||||
|
||||
<OutputFile>
|
||||
$(DEBUG_DIR)(+)$(MODULE_NAME).efi
|
||||
|
||||
<Command>
|
||||
GenFw -e $(MODULE_TYPE) -o ${dst} ${src}
|
||||
$(CP) ${dst} $(OUTPUT_DIR)
|
||||
$(CP) ${dst} $(BIN_DIR)
|
||||
-$(CP) $(DEBUG_DIR)(+)*.map $(OUTPUT_DIR)
|
||||
|
||||
[Build.Dependency-Expression-File]
|
||||
<InputFile>
|
||||
?.dxs, ?.Dxs, ?.DXS
|
||||
|
||||
<OutputFile>
|
||||
$(OUTPUT_DIR)(+)$(MODULE_NAME).depex
|
||||
|
||||
<Command.MSFT>
|
||||
# GenDepex -o ${dst} ${src}
|
||||
|
||||
[Build.Acpi-Source-Language-File]
|
||||
<InputFile>
|
||||
?.asl, ?.Asl, ?.ASL
|
||||
|
||||
<OutputFile>
|
||||
$(OUTPUT_DIR)(+)${s_base}.aml
|
||||
|
||||
<Command.MSFT, Command.INTEL>
|
||||
"$(PP)" $(APP_FLAGS) $(INC) ${src} > ${d_path}(+)${s_base}.i
|
||||
Trim --source-code -o ${d_path}(+)${s_base}.iii ${d_path}(+)${s_base}.i
|
||||
"$(ASL)" -p ${dst} ${d_path}(+)${s_base}.iii
|
||||
|
||||
[Build.Acpi-Table-Code-File]
|
||||
<InputFile>
|
||||
?.aslc
|
||||
|
||||
<OutputFile>
|
||||
$(OUTPUT_DIR)(+)${s_base}.acpi
|
||||
|
||||
<Command.MSFT>
|
||||
"$(CC)" /Fo$(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.obj $(CC_FLAGS) $(INC) ${src}
|
||||
"$(DLINK)" /OUT:$(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.dll $(SLINK_FLAGS) $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.obj
|
||||
GenFw -o ${dst} -c $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.dll
|
||||
|
||||
[Build.Masm16-Code-File]
|
||||
<InputFile>
|
||||
?.asm16, ?.Asm16, ?.ASM16
|
||||
|
||||
<OutputFile>
|
||||
$(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.com
|
||||
|
||||
<Command.MSFT, Command.INTEL>
|
||||
pushd .
|
||||
cd $(OUTPUT_DIR)(+)${s_dir}
|
||||
"$(ASM)" /nologo /omf ${src} /Bl"$(ASMLINK)" $(ASMLINK_FLAGS)
|
||||
-$(CP) ${dst} $(OUTPUT_DIR) & popd
|
||||
|
||||
[Build.Microcode-File]
|
||||
<InputFile>
|
||||
?.txt, ?.TXT, ?.Txt
|
||||
|
||||
<OutputFile>
|
||||
$(OUTPUT_DIR)(+)${s_base}.mcb
|
||||
|
||||
<Command>
|
||||
GenFw -o ${dst} -m ${src}
|
||||
|
||||
[Build.Microcode-Binary-File]
|
||||
<InputFile>
|
||||
*.mcb
|
||||
|
||||
<OutputFile>
|
||||
$(OUTPUT_DIR)(+)$(MODULE_NAME).bin
|
||||
|
||||
<Command>
|
||||
GenFw -o ${dst} -j ${src}
|
||||
|
||||
[Build.Unicode-Text-File]
|
||||
<InputFile>
|
||||
*.uni, *.Uni, *.UNI
|
||||
|
||||
<OutputFile>
|
||||
$(DEBUG_DIR)(+)AutoGen.c
|
||||
$(DEBUG_DIR)(+)AutoGen.h
|
||||
|
||||
<Command>
|
||||
|
||||
|
|
Loading…
Reference in New Issue