]> git.proxmox.com Git - mirror_edk2.git/blob - BaseTools/Conf/build_rule.template
Try to remove duplicated include path in command line option
[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} $(OBJECT_FILES)
206
207 <Command.GCC>
208 "$(SLINK)" -cr ${dst} $(SLINK_FLAGS) $(OBJECT_FILES)
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) $(STATIC_LIBRARY_FILES)
222
223 <Command.GCC>
224 "$(DLINK)" -o ${dst} $(DLINK_FLAGS) -\( $(DLINK_SPATH) $(STATIC_LIBRARY_FILES) -\) $(DLINK2_FLAGS)
225
226 [Static-Library-File.USER_DEFINED]
227 <InputFile>
228 *.lib
229
230 <ExtraDependency>
231 $(MAKE_FILE)
232
233 <OutputFile>
234 $(DEBUG_DIR)(+)$(MODULE_NAME)
235
236 <Command.MSFT, Command.INTEL>
237 "$(DLINK)" $(DLINK_FLAGS) $(DLINK_SPATH) $(STATIC_LIBRARY_FILES)
238
239 <Command.GCC>
240 "$(DLINK)" $(DLINK_FLAGS) -\( $(DLINK_SPATH) $(STATIC_LIBRARY_FILES) -\) $(DLINK2_FLAGS)
241
242 [Dynamic-Library-File]
243 <InputFile>
244 ?.dll
245
246 <OutputFile>
247 $(DEBUG_DIR)(+)$(MODULE_NAME).efi
248
249 <Command>
250 GenFw -e $(MODULE_TYPE) -o ${dst} ${src}
251 $(CP) ${dst} $(OUTPUT_DIR)
252 $(CP) ${dst} $(BIN_DIR)
253 -$(CP) $(DEBUG_DIR)(+)*.map $(OUTPUT_DIR)
254
255 [Dependency-Expression-File]
256 <InputFile>
257 ?.dxs, ?.Dxs, ?.DXS
258
259 <OutputFile>
260 $(OUTPUT_DIR)(+)$(MODULE_NAME).depex
261
262 <Command>
263 "$(PP)" $(CC_FLAGS) $(APP_FLAGS) $(INC) ${src} > $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.i
264 Trim --source-code -o $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.iii $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.i
265 GenDepex -t $(MODULE_TYPE) -o ${dst} $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.iii
266
267 [Acpi-Source-Language-File]
268 <InputFile>
269 ?.asl, ?.Asl, ?.ASL
270
271 <OutputFile>
272 $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.aml
273
274 <ExtraDependency>
275 $(MAKE_FILE)
276
277 <Command.MSFT, Command.INTEL>
278 Trim --asl-file -o $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.i ${src}
279 "$(ASLPP)" $(ASLPP_FLAGS) $(INC) /I${s_path} $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.i > $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.iii
280 "$(ASL)" -p ${dst} $(ASL_FLAGS) $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.iii
281
282 [C-Code-File.AcpiTable]
283 <InputFile>
284 ?.c
285
286 <OutputFile>
287 $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.acpi
288
289 <ExtraDependency>
290 $(MAKE_FILE)
291
292 <Command.MSFT, Command.INTEL>
293 "$(ASLCC)" /Fo$(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.obj $(CC_FLAGS) $(ASLCC_FLAGS) $(INC) ${src}
294 "$(ASLDLINK)" /OUT:$(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.dll $(ASLDLINK_FLAGS) $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.obj
295 GenFw -o ${dst} -c $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.dll
296
297 [Acpi-Table-Code-File]
298 <InputFile>
299 ?.aslc, ?.act
300
301 <OutputFile>
302 $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.acpi
303
304 <ExtraDependency>
305 $(MAKE_FILE)
306
307 <Command.MSFT, Command.INTEL>
308 "$(ASLCC)" /Fo$(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.obj $(CC_FLAGS) $(ASLCC_FLAGS) $(INC) ${src}
309 "$(ASLDLINK)" /OUT:$(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.dll $(ASLDLINK_FLAGS) $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.obj
310 GenFw -o ${dst} -c $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.dll
311
312 [Masm16-Code-File]
313 <InputFile>
314 ?.asm16, ?.Asm16, ?.ASM16
315
316 <ExtraDependency>
317 $(MAKE_FILE)
318
319 <OutputFile>
320 $(OUTPUT_DIR)(+)${s_base}.com
321
322 <Command.MSFT, Command.INTEL>
323 cd $(OUTPUT_DIR)(+)${s_dir}
324 "$(ASM)" /nologo /c /omf /Fo$(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.obj ${src}
325 "$(ASMLINK)" $(ASMLINK_FLAGS) $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.obj,${dst},,,,
326
327 [Microcode-File]
328 <InputFile>
329 ?.txt, ?.TXT, ?.Txt, ?.mut
330
331 <OutputFile>
332 $(OUTPUT_DIR)(+)${s_base}.mcb
333
334 <Command>
335 GenFw -o ${dst} -m ${src}
336
337 [Microcode-Binary-File]
338 <InputFile>
339 *.mcb
340
341 <OutputFile>
342 $(OUTPUT_DIR)(+)$(MODULE_NAME).bin
343
344 <Command>
345 GenFw -o ${dst} -j $(MICROCODE_BINARY_FILES)
346 -$(CP) ${dst} $(BIN_DIR)
347
348 [EFI-Image-File]
349 <InputFile>
350 ?.efi, ?.Efi, ?.EFI
351
352 <OutputFile>
353
354 <Command>
355
356 [Unicode-Text-File]
357 <InputFile>
358 *.uni, *.Uni, *.UNI
359
360 <OutputFile>
361 $(DEBUG_DIR)(+)AutoGen.c
362 $(DEBUG_DIR)(+)$(MODULE_NAME)StrDefs.h
363
364 <Command>