]> git.proxmox.com Git - mirror_edk2.git/blob - BaseTools/Conf/build_rule.template
Updated the macro description according to the latest changes in build tool.
[mirror_edk2.git] / BaseTools / Conf / build_rule.template
1 #
2 # Copyright (c) 2007-2008, Intel Corporation
3 #
4 # All rights reserved. This program and the accompanying materials
5 # are licensed and made available under the terms and conditions of the BSD License
6 # which accompanies this distribution. The full text of the license may be found at
7 # http://opensource.org/licenses/bsd-license.php
8
9 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11 #
12 # Filename: build_rule.template
13 #
14
15 ## Syntax
16 #
17 # "*" is used to indicate that the source files will be processed at the same time.
18 # "?" is used to indicate that the source files will be processed one by one.
19 #
20 # "[" <File-Type>[.<Build-Type>][.<Arch>][, <File-Type>[.<Build-Type>][.<Arch>]] "]" <EOL>
21 # <InputFile[.<ToolChainFamily>]> <EOL>
22 # (?|*).<File-Extension> [(\n|,) (?|*).<File-Extension>]
23 #
24 # <OutputFile[.<ToolChainFamily>]> <EOL>
25 # <FileFullPath>
26 #
27 # <ExtraDependency>
28 # <FileFullPath>
29 #
30 # <Command[.<ToolChainFamily>]> <EOL>
31 # <Command1>
32 # [<Command2>]
33 #
34 # <Build-Type> is the MODULE_TYPE in EDK2 or COMPONENT_TYPE in EDK.
35 # Missing <InputFile> will cause an exception and break build.
36 # Missing <Command> will cause that related build target won't be generated but
37 # won't break build.
38 #
39
40 ## Placeholders for string substitution
41 #
42 # ${src} Source file(s) to be built (full path)
43 # ${s_path} Source file directory (absolute path)
44 # ${s_dir} Source file relative directory within a module
45 # (Note: ${s_dir} is always equals to "." if source file is given in absolute path.)
46 # ${s_name} Source file name without path
47 # ${s_base} Source file name without extension and path
48 # ${s_ext} Source file extension
49 #
50 # ${dst} Destination file(s) built from ${src} (full path)
51 # ${d_path} Destination file directory (absolute path)
52 # ${d_name} Destination file name without path
53 # ${d_base} Destination file name without extension and path
54 # ${d_ext} Destination file extension
55 #
56 # (+) Directory separator
57 #
58
59 ## Macro
60 # $(WORKSPACE) Workspace directory
61 # $(OUTPUT_DIR) Directory for intermediate files for building a module
62 # $(DEBUG_DIR) Directory for files used to debug a module
63 # $(BUILD_DIR) All files for building a platform will be put in this directory
64 # $(BIN_DIR) Common directory for executable files
65 # $(FV_DIR) Directory to store flash image files
66 # $(INC) Search path of current module
67 # $(INC_LIST) A file containing search pathes of current module
68 # $(LIBS) Static library files of current module
69 # $(<tool>_FLAGS) Tools flags of current module
70 # $(MODULE_NAME) Current module name
71 # $(MODULE_TYPE) Current module type
72 # $(ARCH) Architecture of current module
73 # $(TOOLCHAIN) Toolchain used to build current module
74 # $(TARGET) Target of current module (DEBUG/RELEASE)
75 # $(<tool>) Path of tool
76 # $(EDK_TOOLS_PATH) Path of build tools
77 # $(<FILE_TYPES>) File list of each file type
78 # (Note: The macro name is derived from file type name. For example,
79 # C-Code-File will have C_CODE_FILES macro.)
80 # $(<FILE_TYPES_LIST>) Macro point to a file containing list of files of a file type
81 # (
82 # Note: The macro and file name are derived from file type name.
83 # For example, C-Code-File will have C_CODE_FILES_LIST macro pointing
84 # to $(OUTPUT_DIR)/c_code_files.lst. The list file and macro name
85 # will be generated only when this macro is used in command line.
86 # This is intended to get over the long command line limitation.
87 # )
88 #
89 # $(CP) copy command
90 # $(MV) move command
91 # $(RM) delete command
92 # $(MD) create dir command
93 # $(RD) remove dir command
94 #
95
96 ## Reserved File-Type
97 #
98 # Don't change following names of file types and their associated files,
99 # which are also used in tools' code
100 #
101 # C-Code-File
102 # C-Header-File
103 # Dynamic-Library-File
104 # Static-Library-File
105 # Visual-Form-Representation-File
106 # Unicode-Text-File
107 #
108
109 [C-Code-File]
110 <InputFile>
111 ?.c
112 ?.C
113 ?.cc
114 ?.CC
115 ?.cpp
116 ?.Cpp
117 ?.CPP
118
119 <ExtraDependency>
120 $(MAKE_FILE)
121
122 <OutputFile>
123 $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.obj
124
125 <Command.MSFT, Command.INTEL>
126 "$(CC)" /Fo${dst} $(CC_FLAGS) $(INC) ${src}
127
128 <Command.GCC>
129 "$(CC)" -o ${dst} $(CC_FLAGS) $(INC) ${src}
130
131 [C-Header-File]
132 <InputFile>
133 *.h, *.H
134
135 <OutputFile>
136
137 <Command>
138
139
140 [Assembly-Code-File.COMMON.COMMON]
141 <InputFile.MSFT, InputFile.INTEL>
142 ?.asm, ?.Asm, ?.ASM
143
144 <InputFile.GCC>
145 ?.S
146
147 <ExtraDependency>
148 $(MAKE_FILE)
149
150 <OutputFile>
151 $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.obj
152
153 <Command.MSFT, Command.INTEL>
154 "$(PP)" $(PP_FLAGS) $(INC) ${src} > ${d_path}(+)${s_base}.i
155 Trim --source-code --convert-hex -o ${d_path}(+)${s_base}.iii ${d_path}(+)${s_base}.i
156 "$(ASM)" /Fo${dst} $(ASM_FLAGS) /I${s_path} $(INC) ${d_path}(+)${s_base}.iii
157
158 <Command.GCC>
159 "$(PP)" $(PP_FLAGS) $(INC) ${src} > ${d_path}(+)${s_base}.i
160 Trim --source-code -o ${d_path}(+)${s_base}.iii ${d_path}(+)${s_base}.i
161 "$(ASM)" -o ${dst} $(ASM_FLAGS) $(INC) ${d_path}(+)${s_base}.iii
162
163 [Assembly-Code-File.COMMON.IPF]
164 <InputFile>
165 ?.s
166
167 <ExtraDependency>
168 $(MAKE_FILE)
169
170 <OutputFile>
171 $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.obj
172
173 <Command.MSFT, Command.INTEL>
174 "$(PP)" $(PP_FLAGS) $(INC) ${src} > ${d_path}(+)${s_base}.i
175 Trim --source-code -o ${d_path}(+)${s_base}.iii ${d_path}(+)${s_base}.i
176 "$(ASM)" -o ${dst} $(ASM_FLAGS) ${d_path}(+)${s_base}.iii
177
178 [Visual-Form-Representation-File]
179 <InputFile>
180 ?.vfr
181 ?.Vfr
182 ?.VFR
183
184 <ExtraDependency>
185 $(MAKE_FILE)
186
187 <OutputFile>
188 $(DEBUG_DIR)(+)${s_dir}(+)${s_base}.c
189
190 <Command>
191 "$(VFRPP)" $(VFRPP_FLAGS) $(INC) ${src} > $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.i
192 Trim --vfr-file -o $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.iii $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.i
193 -mkdir ${d_path} > NUL 2>&1
194 "$(VFR)" $(VFR_FLAGS) --output-directory ${d_path} $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.iii
195
196 [Object-File]
197 <InputFile>
198 *.obj
199 *.o
200
201 <OutputFile>
202 $(OUTPUT_DIR)(+)$(MODULE_NAME).lib
203
204 <Command.MSFT, Command.INTEL>
205 "$(SLINK)" $(SLINK_FLAGS) /OUT:${dst} ${src}
206
207 <Command.GCC>
208 "$(SLINK)" -cr ${dst} $(SLINK_FLAGS) ${src}
209
210 [Static-Library-File]
211 <InputFile>
212 *.lib
213
214 <ExtraDependency>
215 $(MAKE_FILE)
216
217 <OutputFile>
218 $(DEBUG_DIR)(+)$(MODULE_NAME).dll
219
220 <Command.MSFT, Command.INTEL>
221 "$(DLINK)" /OUT:${dst} $(DLINK_FLAGS) $(DLINK_SPATH) ${src}
222
223 <Command.GCC>
224 "$(DLINK)" -o ${dst} $(DLINK_FLAGS) -\( $(DLINK_SPATH) ${src} -\) $(DLINK2_FLAGS)
225
226 [Dynamic-Library-File]
227 <InputFile>
228 ?.dll
229
230 <OutputFile>
231 $(DEBUG_DIR)(+)$(MODULE_NAME).efi
232
233 <Command>
234 GenFw -e $(MODULE_TYPE) -o ${dst} ${src}
235 $(CP) ${dst} $(OUTPUT_DIR)
236 $(CP) ${dst} $(BIN_DIR)
237 -$(CP) $(DEBUG_DIR)(+)*.map $(OUTPUT_DIR)
238
239 [Dependency-Expression-File]
240 <InputFile>
241 ?.dxs, ?.Dxs, ?.DXS
242
243 <OutputFile>
244 $(OUTPUT_DIR)(+)$(MODULE_NAME).depex
245
246 <Command>
247 "$(PP)" $(CC_FLAGS) $(APP_FLAGS) $(INC) ${src} > $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.i
248 Trim --source-code -o $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.iii $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.i
249 GenDepex -t $(MODULE_TYPE) -o ${dst} $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.iii
250
251 [Acpi-Source-Language-File]
252 <InputFile>
253 ?.asl, ?.Asl, ?.ASL
254
255 <OutputFile>
256 $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.aml
257
258 <ExtraDependency>
259 $(MAKE_FILE)
260
261 <Command.MSFT, Command.INTEL>
262 Trim --asl-file -o $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.i ${src}
263 "$(ASLPP)" $(ASLPP_FLAGS) $(INC) /I${s_path} $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.i > $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.iii
264 "$(ASL)" -p ${dst} $(ASL_FLAGS) $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.iii
265
266 [C-Code-File.AcpiTable]
267 <InputFile>
268 ?.c
269
270 <OutputFile>
271 $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.acpi
272
273 <ExtraDependency>
274 $(MAKE_FILE)
275
276 <Command.MSFT, Command.INTEL>
277 "$(ASLCC)" /Fo$(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.obj $(CC_FLAGS) $(ASLCC_FLAGS) $(INC) ${src}
278 "$(ASLDLINK)" /OUT:$(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.dll $(ASLDLINK_FLAGS) $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.obj
279 GenFw -o ${dst} -c $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.dll
280
281 [Acpi-Table-Code-File]
282 <InputFile>
283 ?.aslc, ?.act
284
285 <OutputFile>
286 $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.acpi
287
288 <ExtraDependency>
289 $(MAKE_FILE)
290
291 <Command.MSFT, Command.INTEL>
292 "$(ASLCC)" /Fo$(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.obj $(CC_FLAGS) $(ASLCC_FLAGS) $(INC) ${src}
293 "$(ASLDLINK)" /OUT:$(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.dll $(ASLDLINK_FLAGS) $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.obj
294 GenFw -o ${dst} -c $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.dll
295
296 [Masm16-Code-File]
297 <InputFile>
298 ?.asm16, ?.Asm16, ?.ASM16
299
300 <ExtraDependency>
301 $(MAKE_FILE)
302
303 <OutputFile>
304 $(OUTPUT_DIR)(+)${s_base}.com
305
306 <Command.MSFT, Command.INTEL>
307 cd $(OUTPUT_DIR)(+)${s_dir}
308 "$(ASM)" /nologo /c /omf /Fo$(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.obj ${src}
309 "$(ASMLINK)" $(ASMLINK_FLAGS) $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.obj,${dst},,,,
310
311 [Microcode-File]
312 <InputFile>
313 ?.txt, ?.TXT, ?.Txt, ?.mut
314
315 <OutputFile>
316 $(OUTPUT_DIR)(+)${s_base}.mcb
317
318 <Command>
319 GenFw -o ${dst} -m ${src}
320
321 [Microcode-Binary-File]
322 <InputFile>
323 *.mcb
324
325 <OutputFile>
326 $(OUTPUT_DIR)(+)$(MODULE_NAME).bin
327
328 <Command>
329 GenFw -o ${dst} -j ${src}
330 -$(CP) ${dst} $(BIN_DIR)
331
332 [EFI-Image-File]
333 <InputFile>
334 ?.efi, ?.Efi, ?.EFI
335
336 <OutputFile>
337
338 <Command>
339
340 [Unicode-Text-File]
341 <InputFile>
342 *.uni, *.Uni, *.UNI
343
344 <OutputFile>
345 $(DEBUG_DIR)(+)AutoGen.c
346 $(DEBUG_DIR)(+)$(MODULE_NAME)StrDefs.h
347
348 <Command>