Add CommandLineFromMsiDescriptor
[reactos.git] / reactos / Makefile
1 # Well-known targets:
2 #
3 # all (default target)
4 # This target builds all of ReactOS.
5 #
6 # module
7 # These targets builds a single module. Replace module with the name of
8 # the module you want to build.
9 #
10 # bootcd
11 # This target builds an ISO (ReactOS.iso) from which ReactOS can be booted
12 # and installed.
13 #
14 # livecd
15 # This target builds an ISO (ReactOS-Live.iso) from which ReactOS can be
16 # booted, but not installed.
17 #
18 # install
19 # This target installs all of ReactOS to a location specified by the
20 # ROS_INSTALL environment variable.
21 #
22 # module_install
23 # These targets installs a single module to a location specified by the
24 # ROS_INSTALL environment variable. Replace module with the name of the
25 # module you want to install.
26 #
27 # clean
28 # This target cleans (deletes) all files that are generated when building
29 # ReactOS.
30 #
31 # module_clean
32 # These targets cleans (deletes) files that are generated when building a
33 # single module. Replace module with the name of the module you want to
34 # clean.
35 #
36 # depends
37 # This target does a complete dependency check of the ReactOS codebase.
38 # This can require several minutes to complete. If you only need to check
39 # dependencies for a single or few modules then you can use the
40 # module_depends targets instead. This target can also repair a damaged or
41 # missing makefile.auto if needed.
42 #
43 # module_depends
44 # These targets do a dependency check of individual modules. Replace module
45 # with the name of the module for which you want to check dependencies.
46 # This is faster than the depends target which does a complete dependency
47 # check of the ReactOS codebase.
48 #
49 #
50 # Accepted environment variables:
51 #
52 # ROS_PREFIX
53 # This variable specifies the prefix of the MinGW installation. On Windows
54 # a prefix is usually not needed, but on linux it is usually "mingw32". If
55 # not present and no executable named "gcc" can be found, then the prefix is
56 # assumed to be "mingw32". If your gcc is named i386-mingw32-gcc then set
57 # ROS_PREFIX to i386-mingw32. Don't include the dash (-) before gcc.
58 #
59 # ROS_INTERMEDIATE
60 # This variable controls where to put intermediate files. Intermediate
61 # files are generated files that are needed to generate the final
62 # output files. Examples of intermediate files include *.o, *.a, and
63 # *.coff. N.B. Don't put a path separator at the end. The variable
64 # defaults to .\obj-i386.
65 #
66 # ROS_OUTPUT
67 # This variable controls where to put output files. Output files are
68 # generated files that makes up the result of the build process.
69 # Examples of output files include *.exe, *.dll, and *.sys. N.B. Don't
70 # put a path separator at the end. The variable defaults to .\output-i386.
71 #
72 # ROS_TEMPORARY
73 # This variable controls where to put temporary files. Temporary files
74 # are (usually small) generated files that are needed to generate the
75 # intermediate or final output files. Examples of temporary files include
76 # *.rci (preprocessed .rc files for wrc), *.tmp, and *.exp. N.B. Don't put
77 # a path separator at the end. The variable defaults to the current
78 # directory.
79 #
80 # ROS_INSTALL
81 # This variable controls where to install output files to when using
82 # 'make install'. N.B. Don't put a path separator at the end. The variable
83 # defaults to .\reactos.
84 #
85 # ROS_BUILDMAP
86 # This variable controls if map files are to be generated for executable
87 # output files. Map files have the extension .map. The value can be either
88 # full (to build map files with assembly code), yes (to build map files
89 # without source code) or no (to not build any map files). The variable
90 # defaults to no.
91 #
92 # ROS_BUILDNOSTRIP
93 # This variable controls if non-symbol-stripped versions are to be built
94 # of executable output files. Non-symbol-stripped executable output files
95 # have .nostrip added to the filename just before the extension. The value
96 # can be either yes (to build non-symbol-stripped versions of executable
97 # output files) or no (to not build non-symbol-stripped versions of
98 # executable output files). The variable defaults to no.
99 #
100 # ROS_RBUILDFLAGS
101 # Pass parameters to rbuild.
102 # -v Be verbose.
103 # -c Clean as you go. Delete generated files as soon as they are not needed anymore.
104 # -dd Disable automatic dependencies.
105 # -dm{module} Check only automatic dependencies for this module.
106 # -mi Let make handle creation of install directories. Rbuild will not generate the directories.
107 # -ps Generate proxy makefiles in source tree instead of the output tree.
108
109 .PHONY: all
110 .PHONY: clean
111 all: makefile.auto
112
113
114 .SUFFIXES:
115
116 ifeq ($(HOST),)
117 ifeq ($(word 1,$(shell gcc -dumpmachine)),mingw32)
118 ifeq ($(OSTYPE),msys)
119 HOST=mingw32-linux
120 else
121 HOST=mingw32-windows
122 endif
123 else
124 HOST=mingw32-linux
125 endif
126 endif
127
128 # Default to half-verbose mode
129 ifeq ($(VERBOSE),no)
130 Q = @
131 HALFVERBOSEECHO = no
132 BUILDNO_QUIET = -q
133 else
134 ifeq ($(VERBOSE),full)
135 Q =
136 HALFVERBOSEECHO = no
137 BUILDNO_QUIET =
138 else
139 Q = @
140 HALFVERBOSEECHO = yes
141 BUILDNO_QUIET = -q
142 endif
143 endif
144 ifeq ($(HOST),mingw32-linux)
145 QUOTE = "
146 else
147 QUOTE =
148 endif
149 ifeq ($(HALFVERBOSEECHO),yes)
150 ECHO_CP =@echo $(QUOTE)[COPY] $@$(QUOTE)
151 ECHO_MKDIR =@echo $(QUOTE)[MKDIR] $@$(QUOTE)
152 ECHO_BUILDNO =@echo $(QUOTE)[BUILDNO] $@$(QUOTE)
153 ECHO_INVOKE =@echo $(QUOTE)[INVOKE] $<$(QUOTE)
154 ECHO_PCH =@echo $(QUOTE)[PCH] $@$(QUOTE)
155 ECHO_CC =@echo $(QUOTE)[CC] $<$(QUOTE)
156 ECHO_GAS =@echo $(QUOTE)[GAS] $<$(QUOTE)
157 ECHO_NASM =@echo $(QUOTE)[NASM] $<$(QUOTE)
158 ECHO_AR =@echo $(QUOTE)[AR] $@$(QUOTE)
159 ECHO_WINEBLD =@echo $(QUOTE)[WINEBLD] $@$(QUOTE)
160 ECHO_WRC =@echo $(QUOTE)[WRC] $@$(QUOTE)
161 ECHO_WIDL =@echo $(QUOTE)[WIDL] $@$(QUOTE)
162 ECHO_BIN2RES =@echo $(QUOTE)[BIN2RES] $<$(QUOTE)
163 ECHO_DLLTOOL =@echo $(QUOTE)[DLLTOOL] $@$(QUOTE)
164 ECHO_LD =@echo $(QUOTE)[LD] $@$(QUOTE)
165 ECHO_NM =@echo $(QUOTE)[NM] $@$(QUOTE)
166 ECHO_OBJDUMP =@echo $(QUOTE)[OBJDUMP] $@$(QUOTE)
167 ECHO_RBUILD =@echo $(QUOTE)[RBUILD] $@$(QUOTE)
168 ECHO_RSYM =@echo $(QUOTE)[RSYM] $@$(QUOTE)
169 ECHO_WMC =@echo $(QUOTE)[WMC] $@$(QUOTE)
170 ECHO_NCI =@echo $(QUOTE)[NCI] $@$(QUOTE)
171 ECHO_CABMAN =@echo $(QUOTE)[CABMAN] $<$(QUOTE)
172 ECHO_CDMAKE =@echo $(QUOTE)[CDMAKE] $@$(QUOTE)
173 ECHO_MKHIVE =@echo $(QUOTE)[MKHIVE] $@$(QUOTE)
174 ECHO_REGTESTS=@echo $(QUOTE)[REGTESTS] $@$(QUOTE)
175 ECHO_TEST =@echo $(QUOTE)[TEST] $@$(QUOTE)
176 ECHO_GENDIB =@echo $(QUOTE)[GENDIB] $@$(QUOTE)
177 else
178 ECHO_CP =
179 ECHO_MKDIR =
180 ECHO_BUILDNO =
181 ECHO_INVOKE =
182 ECHO_PCH =
183 ECHO_CC =
184 ECHO_GAS =
185 ECHO_NASM =
186 ECHO_AR =
187 ECHO_WINEBLD =
188 ECHO_WRC =
189 ECHO_WIDL =
190 ECHO_BIN2RES =
191 ECHO_DLLTOOL =
192 ECHO_LD =
193 ECHO_NM =
194 ECHO_OBJDUMP =
195 ECHO_RBUILD =
196 ECHO_RSYM =
197 ECHO_WMC =
198 ECHO_NCI =
199 ECHO_CABMAN =
200 ECHO_CDMAKE =
201 ECHO_MKHIVE =
202 ECHO_REGTESTS=
203 ECHO_TEST =
204 ECHO_GENDIB =
205 endif
206
207
208 host_gcc = $(Q)gcc
209 host_gpp = $(Q)g++
210 host_ld = $(Q)ld
211 host_ar = $(Q)ar
212 host_objcopy = $(Q)objcopy
213 ifeq ($(HOST),mingw32-linux)
214 export EXEPREFIX = ./
215 ifeq ($(OSTYPE),msys)
216 export EXEPOSTFIX = .exe
217 else
218 export EXEPOSTFIX =
219 endif
220 export SEP = /
221 mkdir = -$(Q)mkdir -p
222 gcc = $(Q)$(PREFIX)-gcc
223 gpp = $(Q)$(PREFIX)-g++
224 ld = $(Q)$(PREFIX)-ld
225 nm = $(Q)$(PREFIX)-nm
226 objdump = $(Q)$(PREFIX)-objdump
227 ar = $(Q)$(PREFIX)-ar
228 objcopy = $(Q)$(PREFIX)-objcopy
229 dlltool = $(Q)$(PREFIX)-dlltool
230 windres = $(Q)$(PREFIX)-windres
231 rm = $(Q)rm -f
232 cp = $(Q)cp
233 NUL = /dev/null
234 else # mingw32-windows
235 ifeq ($(OSTYPE),msys)
236 HOST=mingw32-linux
237 export EXEPREFIX = ./
238 export EXEPOSTFIX = .exe
239 export SEP = /
240 mkdir = -$(Q)mkdir -p
241 gcc = $(Q)gcc
242 gpp = $(Q)g++
243 ld = $(Q)ld
244 nm = $(Q)nm
245 objdump = $(Q)objdump
246 ar = $(Q)ar
247 objcopy = $(Q)objcopy
248 dlltool = $(Q)dlltool
249 windres = $(Q)windres
250 rm = $(Q)rm -f
251 cp = $(Q)cp
252 NUL = /dev/null
253 else
254 export EXEPREFIX =
255 export EXEPOSTFIX = .exe
256 ROS_EMPTY =
257 export SEP = \$(ROS_EMPTY)
258 mkdir = -$(Q)mkdir
259 gcc = $(Q)gcc
260 gpp = $(Q)g++
261 ld = $(Q)ld
262 nm = $(Q)nm
263 objdump = $(Q)objdump
264 ar = $(Q)ar
265 objcopy = $(Q)objcopy
266 dlltool = $(Q)dlltool
267 windres = $(Q)windres
268 rm = $(Q)del /f /q
269 cp = $(Q)copy /y
270 NUL = NUL
271 endif
272 endif
273
274 ifneq ($(ROS_INTERMEDIATE),)
275 INTERMEDIATE := $(ROS_INTERMEDIATE)
276 else
277 INTERMEDIATE := obj-i386
278 endif
279 INTERMEDIATE_ := $(INTERMEDIATE)$(SEP)
280
281 ifneq ($(ROS_OUTPUT),)
282 OUTPUT := $(ROS_OUTPUT)
283 else
284 OUTPUT := output-i386
285 endif
286 OUTPUT_ := $(OUTPUT)$(SEP)
287
288 ifneq ($(ROS_TEMPORARY),)
289 TEMPORARY := $(ROS_TEMPORARY)
290 else
291 TEMPORARY :=
292 endif
293 TEMPORARY_ := $(TEMPORARY)$(SEP)
294
295 ifneq ($(ROS_INSTALL),)
296 INSTALL := $(ROS_INSTALL)
297 else
298 INSTALL := reactos
299 endif
300 INSTALL_ := $(INSTALL)$(SEP)
301
302 $(INTERMEDIATE):
303 ${mkdir} $@
304
305 ifneq ($(INTERMEDIATE),$(OUTPUT))
306 $(OUTPUT):
307 ${mkdir} $@
308 endif
309
310
311 NTOSKRNL_MC = ntoskrnl$(SEP)ntoskrnl.mc
312 KERNEL32_MC = lib$(SEP)kernel32$(SEP)kernel32.mc
313 BUILDNO_H = include$(SEP)reactos$(SEP)buildno.h
314 BUGCODES_H = include$(SEP)reactos$(SEP)bugcodes.h
315 BUGCODES_RC = ntoskrnl$(SEP)bugcodes.rc
316 ERRCODES_H = include$(SEP)reactos$(SEP)errcodes.h
317 ERRCODES_RC = lib$(SEP)kernel32$(SEP)errcodes.rc
318
319 include lib/lib.mak
320 include tools/tools.mak
321 include boot/freeldr/bootsect/bootsect.mak
322 -include makefile.auto
323
324 PREAUTO := \
325 $(BIN2C_TARGET) \
326 $(BIN2RES_TARGET) \
327 $(BUILDNO_H) \
328 $(BUGCODES_H) \
329 $(BUGCODES_RC) \
330 $(ERRCODES_H) \
331 $(ERRCODES_RC) \
332 $(NCI_SERVICE_FILES) \
333 $(GENDIB_DIB_FILES)
334
335 makefile.auto: $(RBUILD_TARGET) $(PREAUTO) $(XMLBUILDFILES)
336 $(ECHO_RBUILD)
337 $(Q)$(RBUILD_TARGET) $(ROS_RBUILDFLAGS) mingw
338
339 .PHONY: msvc
340 msvc: $(RBUILD_TARGET)
341 $(ECHO_RBUILD)
342 $(Q)$(RBUILD_TARGET) $(ROS_RBUILDFLAGS) msvc
343
344 $(BUGCODES_H) $(BUGCODES_RC): $(WMC_TARGET) $(NTOSKRNL_MC)
345 $(ECHO_WMC)
346 $(Q)$(WMC_TARGET) -i -H $(BUGCODES_H) -o $(BUGCODES_RC) $(NTOSKRNL_MC)
347
348 $(ERRCODES_H) $(ERRCODES_RC): $(WMC_TARGET) $(KERNEL32_MC)
349 $(ECHO_WMC)
350 $(Q)$(WMC_TARGET) -i -H $(ERRCODES_H) -o $(ERRCODES_RC) $(KERNEL32_MC)
351
352 .PHONY: msvc6
353 msvc6: $(RBUILD_TARGET)
354 $(ECHO_RBUILD)
355 $(Q)$(RBUILD_TARGET) $(ROS_RBUILDFLAGS) -vs6.00 msvc
356
357 .PHONY: msvc7
358 msvc7: $(RBUILD_TARGET)
359 $(ECHO_RBUILD)
360 $(Q)$(RBUILD_TARGET) $(ROS_RBUILDFLAGS) -vs7.00 msvc
361
362 .PHONY: msvc71
363 msvc71: $(RBUILD_TARGET)
364 $(ECHO_RBUILD)
365 $(Q)$(RBUILD_TARGET) $(ROS_RBUILDFLAGS) -vs7.10 msvc
366
367 .PHONY: msvc8
368 msvc8: $(RBUILD_TARGET)
369 $(ECHO_RBUILD)
370 $(Q)$(RBUILD_TARGET) $(ROS_RBUILDFLAGS) -vs8.00 msvc
371
372 .PHONY: makefile_auto_clean
373 makefile_auto_clean:
374 -@$(rm) makefile.auto $(PREAUTO) 2>$(NUL)
375
376 .PHONY: clean
377 clean: makefile_auto_clean
378
379 .PHONY: depends
380 depends:
381 @-$(rm) makefile.auto
382 @$(MAKE) $(filter-out depends, $(MAKECMDGOALS))