Bug 1770025 [wpt PR 34116] - Update wpt metadata, a=testonly
[gecko.git] / config / rules.mk
blob6c5c4ba0b0eb75e323b622bd544c37ac6de656c0
1 # -*- makefile -*-
2 # vim:set ts=8 sw=8 sts=8 noet:
4 # This Source Code Form is subject to the terms of the Mozilla Public
5 # License, v. 2.0. If a copy of the MPL was not distributed with this file,
6 # You can obtain one at http://mozilla.org/MPL/2.0/.
9 ifndef topsrcdir
10 $(error topsrcdir was not set))
11 endif
13 # Define an include-at-most-once flag
14 ifdef INCLUDED_RULES_MK
15 $(error Do not include rules.mk twice!)
16 endif
17 INCLUDED_RULES_MK = 1
19 ifndef INCLUDED_CONFIG_MK
20 include $(topsrcdir)/config/config.mk
21 endif
23 USE_AUTOTARGETS_MK = 1
24 include $(MOZILLA_DIR)/config/makefiles/makeutils.mk
26 ifdef REBUILD_CHECK
27 REPORT_BUILD = $(info $(shell $(PYTHON3) $(MOZILLA_DIR)/config/rebuild_check.py $@ $^))
28 REPORT_BUILD_VERBOSE = $(REPORT_BUILD)
29 else
30 REPORT_BUILD = $(info $(relativesrcdir)/$(notdir $@))
32 ifdef BUILD_VERBOSE_LOG
33 REPORT_BUILD_VERBOSE = $(REPORT_BUILD)
34 else
35 REPORT_BUILD_VERBOSE = $(call BUILDSTATUS,BUILD_VERBOSE $(relativesrcdir))
36 endif
38 endif
40 EXEC = exec
42 ################################################################################
43 # Testing frameworks support
44 ################################################################################
46 testxpcobjdir = $(DEPTH)/_tests/xpcshell
48 ifdef ENABLE_TESTS
49 ifdef CPP_UNIT_TESTS
50 ifdef COMPILE_ENVIRONMENT
52 # Compile the tests to $(DIST)/bin. Make lots of niceties available by default
53 # through TestHarness.h, by modifying the list of includes and the libs against
54 # which stuff links.
55 SIMPLE_PROGRAMS += $(CPP_UNIT_TESTS)
57 ifndef MOZ_PROFILE_GENERATE
58 CPP_UNIT_TESTS_FILES = $(CPP_UNIT_TESTS)
59 CPP_UNIT_TESTS_DEST = $(DIST)/cppunittests
60 CPP_UNIT_TESTS_TARGET = target
61 INSTALL_TARGETS += CPP_UNIT_TESTS
62 endif
64 run-cppunittests::
65 @$(PYTHON3) $(MOZILLA_DIR)/testing/runcppunittests.py --xre-path=$(DIST)/bin --symbols-path=$(DIST)/crashreporter-symbols $(CPP_UNIT_TESTS)
67 cppunittests-remote:
68 $(PYTHON3) -u $(MOZILLA_DIR)/testing/remotecppunittests.py \
69 --xre-path=$(DEPTH)/dist/bin \
70 --localLib=$(DEPTH)/dist/$(MOZ_APP_NAME) \
71 --deviceIP=${TEST_DEVICE} \
72 $(CPP_UNIT_TESTS) $(EXTRA_TEST_ARGS); \
74 endif # COMPILE_ENVIRONMENT
75 endif # CPP_UNIT_TESTS
76 endif # ENABLE_TESTS
80 # Library rules
82 # If FORCE_STATIC_LIB is set, build a static library.
83 # Otherwise, build a shared library.
86 ifndef LIBRARY
87 ifdef REAL_LIBRARY
88 ifdef NO_EXPAND_LIBS
89 # Only build actual library if it is requested.
90 LIBRARY := $(REAL_LIBRARY)
91 endif
92 endif
93 endif
95 ifdef FORCE_SHARED_LIB
96 ifdef MKSHLIB
98 ifdef LIB_IS_C_ONLY
99 MKSHLIB = $(MKCSHLIB)
100 endif
102 endif # MKSHLIB
103 endif # FORCE_SHARED_LIB
105 ifeq ($(OS_ARCH),WINNT)
108 # This next line captures both the default (non-MOZ_COPY_PDBS)
109 # case as well as the MOZ_COPY_PDBS-for-mingwclang case.
111 # For the default case, placing the pdb in the build
112 # directory is needed.
114 # For the MOZ_COPY_PDBS, non-mingwclang case - we need to
115 # build the pdb next to the executable (handled in the if
116 # statement immediately below.)
118 # For the MOZ_COPY_PDBS, mingwclang case - we also need to
119 # build the pdb next to the executable, but this macro doesn't
120 # work for jsapi-tests which is a little special, so we specify
121 # the output directory below with MOZ_PROGRAM_LDFLAGS.
123 LINK_PDBFILE ?= $(basename $(@F)).pdb
125 ifdef MOZ_COPY_PDBS
126 ifneq ($(CC_TYPE),clang)
127 LINK_PDBFILE = $(basename $@).pdb
128 endif
129 endif
131 ifndef GNU_CC
133 ifdef SIMPLE_PROGRAMS
134 COMPILE_PDB_FLAG ?= -Fd$(basename $(@F)).pdb
135 COMPILE_CFLAGS += $(COMPILE_PDB_FLAG)
136 COMPILE_CXXFLAGS += $(COMPILE_PDB_FLAG)
137 endif
139 ifdef MOZ_DEBUG
140 CODFILE=$(basename $(@F)).cod
141 endif
143 endif # !GNU_CC
144 endif # WINNT
146 ifeq (arm-Darwin,$(CPU_ARCH)-$(OS_TARGET))
147 ifdef PROGRAM
148 MOZ_PROGRAM_LDFLAGS += -Wl,-rpath -Wl,@executable_path/Frameworks
149 endif
150 endif
152 ifeq ($(OS_ARCH),WINNT)
153 ifeq ($(CC_TYPE),clang)
154 MOZ_PROGRAM_LDFLAGS += -Wl,-pdb,$(dir $@)/$(LINK_PDBFILE)
155 endif
156 endif
158 ifeq ($(HOST_OS_ARCH),WINNT)
159 HOST_PDBFILE=$(basename $(@F)).pdb
160 HOST_PDB_FLAG ?= -PDB:$(HOST_PDBFILE)
161 HOST_C_LDFLAGS += -DEBUG $(HOST_PDB_FLAG)
162 HOST_CXX_LDFLAGS += -DEBUG $(HOST_PDB_FLAG)
163 endif
165 # Don't build SIMPLE_PROGRAMS during the MOZ_PROFILE_GENERATE pass, and do not
166 # attempt to install them
167 ifdef MOZ_PROFILE_GENERATE
168 $(foreach category,$(INSTALL_TARGETS),\
169 $(eval $(category)_FILES := $(foreach file,$($(category)_FILES),$(if $(filter $(SIMPLE_PROGRAMS),$(notdir $(file))),,$(file)))))
170 SIMPLE_PROGRAMS :=
171 endif
173 ifdef COMPILE_ENVIRONMENT
174 ifndef TARGETS
175 TARGETS = $(LIBRARY) $(SHARED_LIBRARY) $(PROGRAM) $(SIMPLE_PROGRAMS) $(HOST_PROGRAM) $(HOST_SIMPLE_PROGRAMS) $(HOST_SHARED_LIBRARY)
176 endif
178 COBJS = $(notdir $(CSRCS:.c=.$(OBJ_SUFFIX)))
179 CWASMOBJS = $(notdir $(WASM_CSRCS:.c=.$(WASM_OBJ_SUFFIX)))
180 SOBJS = $(notdir $(SSRCS:.S=.$(OBJ_SUFFIX)))
181 # CPPSRCS can have different extensions (eg: .cpp, .cc)
182 CPPOBJS = $(notdir $(addsuffix .$(OBJ_SUFFIX),$(basename $(CPPSRCS))))
183 CPPWASMOBJS = $(notdir $(addsuffix .$(WASM_OBJ_SUFFIX),$(basename $(WASM_CPPSRCS))))
184 CMOBJS = $(notdir $(CMSRCS:.m=.$(OBJ_SUFFIX)))
185 CMMOBJS = $(notdir $(CMMSRCS:.mm=.$(OBJ_SUFFIX)))
186 # ASFILES can have different extensions (.s, .asm)
187 ASOBJS = $(notdir $(addsuffix .$(OBJ_SUFFIX),$(basename $(ASFILES))))
188 RS_STATICLIB_CRATE_OBJ = $(addprefix lib,$(notdir $(RS_STATICLIB_CRATE_SRC:.rs=.$(LIB_SUFFIX))))
189 ifndef OBJS
190 _OBJS = $(COBJS) $(SOBJS) $(CPPOBJS) $(CMOBJS) $(CMMOBJS) $(ASOBJS) $(CWASMOBJS) $(CPPWASMOBJS)
191 OBJS = $(strip $(_OBJS))
192 endif
194 HOST_COBJS = $(addprefix host_,$(notdir $(HOST_CSRCS:.c=.$(OBJ_SUFFIX))))
195 # HOST_CPPOBJS can have different extensions (eg: .cpp, .cc)
196 HOST_CPPOBJS = $(addprefix host_,$(notdir $(addsuffix .$(OBJ_SUFFIX),$(basename $(HOST_CPPSRCS)))))
197 HOST_CMOBJS = $(addprefix host_,$(notdir $(HOST_CMSRCS:.m=.$(OBJ_SUFFIX))))
198 HOST_CMMOBJS = $(addprefix host_,$(notdir $(HOST_CMMSRCS:.mm=.$(OBJ_SUFFIX))))
199 ifndef HOST_OBJS
200 _HOST_OBJS = $(HOST_COBJS) $(HOST_CPPOBJS) $(HOST_CMOBJS) $(HOST_CMMOBJS)
201 HOST_OBJS = $(strip $(_HOST_OBJS))
202 endif
203 else
204 LIBRARY :=
205 SHARED_LIBRARY :=
206 IMPORT_LIBRARY :=
207 REAL_LIBRARY :=
208 PROGRAM :=
209 SIMPLE_PROGRAMS :=
210 HOST_SHARED_LIBRARY :=
211 HOST_PROGRAM :=
212 HOST_SIMPLE_PROGRAMS :=
213 endif
215 ifdef MACH
216 ifndef NO_BUILDSTATUS_MESSAGES
217 define BUILDSTATUS
218 @echo 'BUILDSTATUS $1'
220 endef
221 endif
222 endif
224 define SUBMAKE # $(call SUBMAKE,target,directory,static)
225 +@$(MAKE) $(if $(2),-C $(2)) $(1)
227 endef # The extra line is important here! don't delete it
229 define TIER_DIR_SUBMAKE
230 $(call SUBMAKE,$(4),$(3),$(5))
232 endef # Ths empty line is important.
234 ifneq (,$(strip $(DIRS)))
235 LOOP_OVER_DIRS = \
236 $(foreach dir,$(DIRS),$(call SUBMAKE,$@,$(dir)))
237 endif
240 # Now we can differentiate between objects used to build a library, and
241 # objects used to build an executable in the same directory.
243 ifndef PROGOBJS
244 PROGOBJS = $(OBJS)
245 endif
247 ifndef HOST_PROGOBJS
248 HOST_PROGOBJS = $(HOST_OBJS)
249 endif
252 # Tags: emacs (etags), vi (ctags)
253 # TAG_PROGRAM := ctags -L -
255 TAG_PROGRAM = xargs etags -a
258 # Turn on C++ linking if we have any .cpp or .mm files
259 # (moved this from config.mk so that config.mk can be included
260 # before the CPPSRCS are defined)
262 ifneq ($(HOST_CPPSRCS)$(HOST_CMMSRCS),)
263 HOST_CPP_PROG_LINK = 1
264 endif
267 # MacOS X specific stuff
270 ifeq ($(OS_ARCH),Darwin)
271 ifneq (,$(SHARED_LIBRARY))
272 _LOADER_PATH := @executable_path
273 EXTRA_DSO_LDOPTS += -dynamiclib -install_name $(_LOADER_PATH)/$@ -compatibility_version 1 -current_version 1
274 endif
275 endif
278 # GNU doesn't have path length limitation
281 ifeq ($(OS_ARCH),GNU)
282 OS_CPPFLAGS += -DPATH_MAX=1024 -DMAXPATHLEN=1024
283 endif
286 # MINGW32
288 ifeq ($(OS_ARCH),WINNT)
289 ifdef GNU_CC
290 DSO_LDOPTS += -Wl,--out-implib -Wl,$(IMPORT_LIBRARY)
291 endif
292 endif
294 ifeq ($(USE_TVFS),1)
295 IFLAGS1 = -rb
296 IFLAGS2 = -rb
297 else
298 IFLAGS1 = -m 644
299 IFLAGS2 = -m 755
300 endif
302 ifeq (_WINNT,$(GNU_CC)_$(OS_ARCH))
303 OUTOPTION = -Fo# eol
304 else
305 OUTOPTION = -o # eol
306 endif # WINNT && !GNU_CC
308 ifeq (,$(CROSS_COMPILE))
309 HOST_OUTOPTION = $(OUTOPTION)
310 else
311 # Windows-to-Windows cross compiles should always use MSVC-style options for
312 # host compiles.
313 ifeq (WINNT_WINNT,$(HOST_OS_ARCH)_$(OS_ARCH))
314 ifneq (,$(filter-out clang-cl,$(HOST_CC_TYPE)))
315 $(error MSVC-style compilers should be used for host compilations!)
316 endif
317 HOST_OUTOPTION = -Fo# eol
318 else
319 HOST_OUTOPTION = -o # eol
320 endif
321 endif
322 ################################################################################
324 # Ensure the build config is up to date. This is done automatically when builds
325 # are performed through |mach build|. The check here is to catch people not
326 # using mach. If we ever enforce builds through mach, this code can be removed.
327 ifndef MOZBUILD_BACKEND_CHECKED
328 ifndef MACH
329 ifndef TOPLEVEL_BUILD
330 BUILD_BACKEND_FILES := $(addprefix $(DEPTH)/backend.,$(addsuffix Backend,$(BUILD_BACKENDS)))
331 $(DEPTH)/backend.%Backend:
332 $(error Build configuration changed. Build with |mach build| or run |mach build-backend| to regenerate build config)
334 define build_backend_rule
335 $(1): $$(shell cat $(1).in)
337 endef
338 $(foreach file,$(BUILD_BACKEND_FILES),$(eval $(call build_backend_rule,$(file))))
340 default:: $(BUILD_BACKEND_FILES)
342 export MOZBUILD_BACKEND_CHECKED=1
343 endif
344 endif
345 endif
347 # The root makefile doesn't want to do a plain export/libs, because
348 # of the tiers and because of libxul. Suppress the default rules in favor
349 # of something else. Makefiles which use this var *must* provide a sensible
350 # default rule before including rules.mk
351 default all::
352 $(foreach tier,$(TIERS),$(call SUBMAKE,$(tier)))
354 ifdef BUILD_VERBOSE_LOG
355 ECHO := echo
356 QUIET :=
357 else
358 ECHO := true
359 QUIET := -q
360 endif
362 # Dependencies which, if modified, should cause everything to rebuild
363 GLOBAL_DEPS += Makefile $(addprefix $(DEPTH)/config/,$(INCLUDED_AUTOCONF_MK)) $(MOZILLA_DIR)/config/config.mk
365 ifeq ($(MOZ_WIDGET_TOOLKIT),windows)
366 # We always build .res files for programs and shared libraries
367 resfile = $(notdir $1).res
368 # We also build .res files for simple programs if a corresponding manifest
369 # exists. We'll generate a .rc file that includes the manifest.
370 ifdef GNU_CC
371 # Skip on mingw builds because of bug 1657863
372 resfile_for_manifest =
373 else
374 resfile_for_manifest = $(if $(wildcard $(srcdir)/$(notdir $1).manifest),$(call resfile,$1))
375 endif
376 else
377 resfile =
378 resfile_for_manifest =
379 endif
381 ##############################################
382 ifdef COMPILE_ENVIRONMENT
383 compile:: host target
385 host:: $(HOST_OBJS) $(HOST_PROGRAM) $(HOST_SIMPLE_PROGRAMS) $(HOST_RUST_PROGRAMS) $(HOST_RUST_LIBRARY_FILE) $(HOST_SHARED_LIBRARY)
387 target:: $(filter-out $(MOZBUILD_NON_DEFAULT_TARGETS),$(LIBRARY) $(SHARED_LIBRARY) $(PROGRAM) $(SIMPLE_PROGRAMS) $(RUST_LIBRARY_FILE) $(RUST_PROGRAMS))
389 ifndef LIBRARY
390 ifdef OBJS
391 target:: $(OBJS)
392 endif
393 endif
395 target-objects: $(OBJS) $(PROGOBJS)
396 host-objects: $(HOST_OBJS) $(HOST_PROGOBJS)
398 syms::
400 include $(MOZILLA_DIR)/config/makefiles/target_binaries.mk
401 endif
403 alltags:
404 $(RM) TAGS
405 find $(topsrcdir) -name dist -prune -o \( -name '*.[hc]' -o -name '*.cp' -o -name '*.cpp' -o -name '*.idl' \) -print | $(TAG_PROGRAM)
407 define EXPAND_CC_OR_CXX
408 $(if $(PROG_IS_C_ONLY_$(1)),$(CC),$(CCC))
409 endef
412 # PROGRAM = Foo
413 # creates OBJS, links with LIBS to create Foo
415 $(PROGRAM): $(PROGOBJS) $(STATIC_LIBS) $(EXTRA_DEPS) $(call resfile,$(PROGRAM)) $(GLOBAL_DEPS) $(call mkdir_deps,$(FINAL_TARGET))
416 $(REPORT_BUILD)
417 ifeq (_WINNT,$(GNU_CC)_$(OS_ARCH))
418 $(LINKER) -OUT:$@ -PDB:$(LINK_PDBFILE) -IMPLIB:$(basename $(@F)).lib $(WIN32_EXE_LDFLAGS) $(LDFLAGS) $(MOZ_PROGRAM_LDFLAGS) $($(notdir $@)_OBJS) $(filter %.res,$^) $(STATIC_LIBS) $(SHARED_LIBS) $(OS_LIBS)
419 else # !WINNT || GNU_CC
420 $(call EXPAND_CC_OR_CXX,$@) -o $@ $(COMPUTED_CXX_LDFLAGS) $(PGO_CFLAGS) $($(notdir $@)_OBJS) $(filter %.res,$^) $(WIN32_EXE_LDFLAGS) $(LDFLAGS) $(STATIC_LIBS) $(MOZ_PROGRAM_LDFLAGS) $(SHARED_LIBS) $(OS_LIBS)
421 $(call py_action,check_binary,--target $@)
422 endif # WINNT && !GNU_CC
424 ifdef ENABLE_STRIP
425 $(STRIP) $(STRIP_FLAGS) $@
426 endif
427 ifdef MOZ_POST_PROGRAM_COMMAND
428 $(MOZ_POST_PROGRAM_COMMAND) $@
429 endif
431 $(HOST_PROGRAM): $(HOST_PROGOBJS) $(HOST_LIBS) $(HOST_EXTRA_DEPS) $(GLOBAL_DEPS) $(call mkdir_deps,$(DEPTH)/dist/host/bin)
432 $(REPORT_BUILD)
433 ifeq (_WINNT,$(GNU_CC)_$(HOST_OS_ARCH))
434 $(HOST_LINKER) -OUT:$@ -PDB:$(HOST_PDBFILE) $($(notdir $@)_OBJS) $(WIN32_EXE_LDFLAGS) $(HOST_LDFLAGS) $(HOST_LINKER_LIBPATHS) $(HOST_LIBS) $(HOST_EXTRA_LIBS)
435 else
436 ifeq ($(HOST_CPP_PROG_LINK),1)
437 $(HOST_CXX) -o $@ $(HOST_CXX_LDFLAGS) $(HOST_LDFLAGS) $($(notdir $@)_OBJS) $(HOST_LIBS) $(HOST_EXTRA_LIBS)
438 else
439 $(HOST_CC) -o $@ $(HOST_C_LDFLAGS) $(HOST_LDFLAGS) $($(notdir $@)_OBJS) $(HOST_LIBS) $(HOST_EXTRA_LIBS)
440 endif # HOST_CPP_PROG_LINK
441 endif
442 ifndef CROSS_COMPILE
443 $(call py_action,check_binary,--host $@)
444 endif
447 # This is an attempt to support generation of multiple binaries
448 # in one directory, it assumes everything to compile Foo is in
449 # Foo.o (from either Foo.c or Foo.cpp).
451 # SIMPLE_PROGRAMS = Foo Bar
452 # creates Foo.o Bar.o, links with LIBS to create Foo, Bar.
454 define simple_program_deps
455 $1: $(1:$(BIN_SUFFIX)=.$(OBJ_SUFFIX)) $(STATIC_LIBS) $(EXTRA_DEPS) $(call resfile_for_manifest,$1) $(GLOBAL_DEPS)
456 endef
457 $(foreach p,$(SIMPLE_PROGRAMS),$(eval $(call simple_program_deps,$(p))))
459 $(SIMPLE_PROGRAMS):
460 $(REPORT_BUILD)
461 ifeq (_WINNT,$(GNU_CC)_$(OS_ARCH))
462 $(LINKER) -out:$@ -pdb:$(LINK_PDBFILE) $($@_OBJS) $(filter %.res,$^) $(WIN32_EXE_LDFLAGS) $(LDFLAGS) $(MOZ_PROGRAM_LDFLAGS) $(STATIC_LIBS) $(SHARED_LIBS) $(OS_LIBS)
463 else
464 $(call EXPAND_CC_OR_CXX,$@) $(COMPUTED_CXX_LDFLAGS) $(PGO_CFLAGS) -o $@ $($@_OBJS) $(filter %.res,$^) $(WIN32_EXE_LDFLAGS) $(LDFLAGS) $(STATIC_LIBS) $(MOZ_PROGRAM_LDFLAGS) $(SHARED_LIBS) $(OS_LIBS)
465 $(call py_action,check_binary,--target $@)
466 endif # WINNT && !GNU_CC
468 ifdef ENABLE_STRIP
469 $(STRIP) $(STRIP_FLAGS) $@
470 endif
471 ifdef MOZ_POST_PROGRAM_COMMAND
472 $(MOZ_POST_PROGRAM_COMMAND) $@
473 endif
475 $(HOST_SIMPLE_PROGRAMS): host_%$(HOST_BIN_SUFFIX): $(HOST_LIBS) $(HOST_EXTRA_DEPS) $(GLOBAL_DEPS)
476 $(REPORT_BUILD)
477 ifeq (WINNT_,$(HOST_OS_ARCH)_$(GNU_CC))
478 $(HOST_LINKER) -OUT:$@ -PDB:$(HOST_PDBFILE) $($(notdir $@)_OBJS) $(WIN32_EXE_LDFLAGS) $(HOST_LDFLAGS) $(HOST_LINKER_LIBPATHS) $(HOST_LIBS) $(HOST_EXTRA_LIBS)
479 else
480 ifneq (,$(HOST_CPPSRCS)$(USE_HOST_CXX))
481 $(HOST_CXX) $(HOST_OUTOPTION)$@ $(HOST_CXX_LDFLAGS) $($(notdir $@)_OBJS) $(HOST_LIBS) $(HOST_EXTRA_LIBS)
482 else
483 $(HOST_CC) $(HOST_OUTOPTION)$@ $(HOST_C_LDFLAGS) $($(notdir $@)_OBJS) $(HOST_LIBS) $(HOST_EXTRA_LIBS)
484 endif
485 endif
486 ifndef CROSS_COMPILE
487 $(call py_action,check_binary,--host $@)
488 endif
490 $(LIBRARY): $(OBJS) $(STATIC_LIBS) $(EXTRA_DEPS) $(GLOBAL_DEPS)
491 $(REPORT_BUILD)
492 $(RM) $(REAL_LIBRARY)
493 $(AR) $(AR_FLAGS) $($@_OBJS)
495 $(WASM_ARCHIVE): $(CWASMOBJS) $(CPPWASMOBJS) $(STATIC_LIBS) $(EXTRA_DEPS) $(GLOBAL_DEPS)
496 $(REPORT_BUILD_VERBOSE)
497 $(RM) $(WASM_ARCHIVE)
498 $(WASM_CXX) -o $@ -Wl,--export-all -Wl,--stack-first -Wl,-z,stack-size=$(if $(MOZ_OPTIMIZE),262144,1048576) -Wl,--no-entry -Wl,--growable-table $(CWASMOBJS) $(CPPWASMOBJS) -lwasi-emulated-process-clocks
500 $(addsuffix .c,$(WASM_ARCHIVE)): $(WASM_ARCHIVE) $(DIST)/host/bin/wasm2c$(HOST_BIN_SUFFIX)
501 $(DIST)/host/bin/wasm2c$(HOST_BIN_SUFFIX) -o $@ $<
503 ifeq ($(OS_ARCH),WINNT)
504 # Import libraries are created by the rules creating shared libraries.
505 # The rules to copy them to $(DIST)/lib depend on $(IMPORT_LIBRARY),
506 # but make will happily consider the import library before it is refreshed
507 # when rebuilding the corresponding shared library. Defining an empty recipe
508 # for import libraries forces make to wait for the shared library recipe to
509 # have run before considering other targets that depend on the import library.
510 # See bug 795204.
511 $(IMPORT_LIBRARY): $(SHARED_LIBRARY) ;
512 endif
514 $(HOST_SHARED_LIBRARY): Makefile
515 $(REPORT_BUILD)
516 $(RM) $@
517 ifneq (,$(filter clang-cl,$(HOST_CC_TYPE)))
518 $(HOST_LINKER) -DLL -OUT:$@ $($(notdir $@)_OBJS) $(HOST_CXX_LDFLAGS) $(HOST_LDFLAGS) $(HOST_LINKER_LIBPATHS) $(HOST_LIBS) $(HOST_EXTRA_LIBS)
519 else
520 $(HOST_CXX) $(HOST_OUTOPTION)$@ $($(notdir $@)_OBJS) $(HOST_CXX_LDFLAGS) $(HOST_LDFLAGS) $(HOST_LIBS) $(HOST_EXTRA_LIBS)
521 endif
523 # On Darwin (Mac OS X), dwarf2 debugging uses debug info left in .o files,
524 # so instead of deleting .o files after repacking them into a dylib, we make
525 # symlinks back to the originals. The symlinks are a no-op for stabs debugging,
526 # so no need to conditionalize on OS version or debugging format.
528 $(SHARED_LIBRARY): $(OBJS) $(call resfile,$(SHARED_LIBRARY)) $(STATIC_LIBS) $(EXTRA_DEPS) $(GLOBAL_DEPS)
529 $(REPORT_BUILD)
530 $(RM) $@
531 $(MKSHLIB) $($@_OBJS) $(filter %.res,$^) $(LDFLAGS) $(STATIC_LIBS) $(SHARED_LIBS) $(EXTRA_DSO_LDOPTS) $(MOZ_GLUE_LDFLAGS) $(OS_LIBS)
532 $(call py_action,check_binary,--target $@)
534 ifeq (_WINNT,$(GNU_CC)_$(OS_ARCH))
535 endif # WINNT && !GCC
536 chmod +x $@
537 ifdef ENABLE_STRIP
538 $(STRIP) $(STRIP_FLAGS) $@
539 endif
541 # The object file is in the current directory, and the source file can be any
542 # relative path. This macro adds the dependency obj: src for each source file.
543 # This dependency must be first for the $< flag to work correctly, and the
544 # rules that have commands for these targets must not list any other
545 # prerequisites, or they will override the $< variable.
546 define src_objdep
547 $(basename $3$(notdir $1)).$2: $1 $$(call mkdir_deps,$$(MDDEPDIR))
548 endef
549 $(foreach f,$(CSRCS) $(SSRCS) $(CPPSRCS) $(CMSRCS) $(CMMSRCS) $(ASFILES),$(eval $(call src_objdep,$(f),$(OBJ_SUFFIX))))
550 $(foreach f,$(HOST_CSRCS) $(HOST_CPPSRCS) $(HOST_CMSRCS) $(HOST_CMMSRCS),$(eval $(call src_objdep,$(f),$(OBJ_SUFFIX),host_)))
551 $(foreach f,$(WASM_CSRCS) $(WASM_CPPSRCS),$(eval $(call src_objdep,$(f),wasm)))
553 # The Rust compiler only outputs library objects, and so we need different
554 # mangling to generate dependency rules for it.
555 mk_global_crate_libname = $(basename lib$(notdir $1)).$(LIB_SUFFIX)
556 crate_src_libdep = $(call mk_global_crate_libname,$1): $1 $$(call mkdir_deps,$$(MDDEPDIR))
557 $(foreach f,$(RS_STATICLIB_CRATE_SRC),$(eval $(call crate_src_libdep,$(f))))
559 $(OBJS) $(HOST_OBJS) $(PROGOBJS) $(HOST_PROGOBJS): $(GLOBAL_DEPS)
561 # Rules for building native targets must come first because of the host_ prefix
562 $(HOST_COBJS):
563 $(REPORT_BUILD_VERBOSE)
564 $(HOST_CC) $(HOST_OUTOPTION)$@ -c $(HOST_CPPFLAGS) $(HOST_CFLAGS) $(NSPR_CFLAGS) $<
566 $(HOST_CPPOBJS):
567 $(REPORT_BUILD_VERBOSE)
568 $(call BUILDSTATUS,OBJECT_FILE $@)
569 $(HOST_CXX) $(HOST_OUTOPTION)$@ -c $(HOST_CPPFLAGS) $(HOST_CXXFLAGS) $(NSPR_CFLAGS) $<
571 $(HOST_CMOBJS):
572 $(REPORT_BUILD_VERBOSE)
573 $(HOST_CC) $(HOST_OUTOPTION)$@ -c $(HOST_CPPFLAGS) $(HOST_CFLAGS) $(HOST_CMFLAGS) $(NSPR_CFLAGS) $<
575 $(HOST_CMMOBJS):
576 $(REPORT_BUILD_VERBOSE)
577 $(HOST_CXX) $(HOST_OUTOPTION)$@ -c $(HOST_CPPFLAGS) $(HOST_CXXFLAGS) $(HOST_CMMFLAGS) $(NSPR_CFLAGS) $<
579 $(COBJS):
580 $(REPORT_BUILD_VERBOSE)
581 $(CC) $(OUTOPTION)$@ -c $(COMPILE_CFLAGS) $($(notdir $<)_FLAGS) $<
583 $(CWASMOBJS):
584 $(REPORT_BUILD_VERBOSE)
585 $(WASM_CC) -o $@ -c $(WASM_CFLAGS) $($(notdir $<)_FLAGS) $<
587 WINEWRAP = $(if $(and $(filter %.exe,$1),$(WINE)),$(WINE) $1,$1)
589 # Windows program run via Wine don't like Unix absolute paths (they look
590 # like command line arguments). So when needed, create relative paths
591 # from absolute paths. We start with $(DEPTH), which gets us to topobjdir,
592 # then add "/.." for each component of topobjdir, which gets us to /.
593 # then we can add the absolute path after that and we have a relative path,
594 # albeit longer than it could be.
595 ifdef WINE
596 relativize = $(if $(filter /%,$1),$(DEPTH)$(subst $(space),,$(foreach d,$(subst /, ,$(topobjdir)),/..))$1,$1)
597 else
598 relativize = $1
599 endif
601 ifdef ASFILES
602 # The AS_DASH_C_FLAG is needed cause not all assemblers (Solaris) accept
603 # a '-c' flag.
604 $(ASOBJS):
605 $(REPORT_BUILD_VERBOSE)
606 $(call WINEWRAP,$(AS)) $(ASOUTOPTION)$@ $(ASFLAGS) $($(notdir $<)_FLAGS) $(AS_DASH_C_FLAG) $(call relativize,$<)
607 endif
609 define syms_template
610 syms:: $(2)
611 $(2): $(1)
612 ifdef MOZ_CRASHREPORTER
613 $$(call py_action,dumpsymbols,$$(abspath $$<) $$(abspath $$@) $$(DUMP_SYMBOLS_FLAGS))
614 ifeq ($(OS_ARCH),WINNT)
615 ifdef WINCHECKSEC
616 $$(PYTHON3) $$(topsrcdir)/build/win32/autowinchecksec.py $$<
617 endif # WINCHECKSEC
618 endif # WINNT
619 endif
620 endef
622 ifneq (,$(filter $(DIST)/bin%,$(FINAL_TARGET)))
623 DUMP_SYMS_TARGETS := $(SHARED_LIBRARY) $(PROGRAM) $(SIMPLE_PROGRAMS)
624 endif
626 ifdef MOZ_AUTOMATION
627 ifeq (,$(filter 1,$(MOZ_AUTOMATION_BUILD_SYMBOLS)))
628 DUMP_SYMS_TARGETS :=
629 endif
630 endif
632 ifdef MOZ_COPY_PDBS
633 MAIN_PDB_FILES = $(addsuffix .pdb,$(basename $(DUMP_SYMS_TARGETS)))
634 MAIN_PDB_DEST ?= $(FINAL_TARGET)
635 MAIN_PDB_TARGET = syms
636 INSTALL_TARGETS += MAIN_PDB
638 ifdef CPP_UNIT_TESTS
639 CPP_UNIT_TESTS_PDB_FILES = $(addsuffix .pdb,$(basename $(CPP_UNIT_TESTS)))
640 CPP_UNIT_TESTS_PDB_DEST = $(DIST)/cppunittests
641 CPP_UNIT_TESTS_PDB_TARGET = syms
642 INSTALL_TARGETS += CPP_UNIT_TESTS_PDB
643 endif
645 else ifdef MOZ_CRASHREPORTER
646 $(foreach file,$(DUMP_SYMS_TARGETS),$(eval $(call syms_template,$(file),$(notdir $(file))_syms.track)))
647 endif
649 ifneq (,$(RUST_TESTS)$(RUST_LIBRARY_FILE)$(HOST_RUST_LIBRARY_FILE)$(RUST_PROGRAMS)$(HOST_RUST_PROGRAMS))
650 include $(MOZILLA_DIR)/config/makefiles/rust.mk
651 endif
653 $(SOBJS):
654 $(REPORT_BUILD)
655 $(call WINEWRAP,$(AS)) $(ASOUTOPTION)$@ $(SFLAGS) $($(notdir $<)_FLAGS) -c $(call relativize,$<)
657 $(CPPOBJS):
658 $(REPORT_BUILD_VERBOSE)
659 $(call BUILDSTATUS,OBJECT_FILE $@)
660 $(CCC) $(OUTOPTION)$@ -c $(COMPILE_CXXFLAGS) $($(notdir $<)_FLAGS) $<
662 $(CPPWASMOBJS):
663 $(REPORT_BUILD_VERBOSE)
664 $(call BUILDSTATUS,OBJECT_FILE $@)
665 $(WASM_CXX) -o $@ -c $(WASM_CXXFLAGS) $($(notdir $<)_FLAGS) $<
667 $(CMMOBJS):
668 $(REPORT_BUILD_VERBOSE)
669 $(CCC) -o $@ -c $(COMPILE_CXXFLAGS) $(COMPILE_CMMFLAGS) $($(notdir $<)_FLAGS) $<
671 $(CMOBJS):
672 $(REPORT_BUILD_VERBOSE)
673 $(CC) -o $@ -c $(COMPILE_CFLAGS) $(COMPILE_CMFLAGS) $($(notdir $<)_FLAGS) $<
675 $(filter %.s,$(CPPSRCS:%.cpp=%.s)): %.s: %.cpp $(call mkdir_deps,$(MDDEPDIR))
676 $(REPORT_BUILD_VERBOSE)
677 $(CCC) -S $(COMPILE_CXXFLAGS) $($(notdir $<)_FLAGS) $<
679 $(filter %.s,$(CPPSRCS:%.cc=%.s)): %.s: %.cc $(call mkdir_deps,$(MDDEPDIR))
680 $(REPORT_BUILD_VERBOSE)
681 $(CCC) -S $(COMPILE_CXXFLAGS) $($(notdir $<)_FLAGS) $<
683 $(filter %.s,$(CPPSRCS:%.cxx=%.s)): %.s: %.cpp $(call mkdir_deps,$(MDDEPDIR))
684 $(REPORT_BUILD_VERBOSE)
685 $(CCC) -S $(COMPILE_CXXFLAGS) $($(notdir $<)_FLAGS) $<
687 $(filter %.s,$(CSRCS:%.c=%.s)): %.s: %.c $(call mkdir_deps,$(MDDEPDIR))
688 $(REPORT_BUILD_VERBOSE)
689 $(CC) -S $(COMPILE_CFLAGS) $($(notdir $<)_FLAGS) $<
691 ifneq (,$(filter %.i,$(MAKECMDGOALS)))
692 # Call as $(call _group_srcs,extension,$(SRCS)) - this will create a list
693 # of the full sources, as well as the $(notdir) version. So:
694 # foo.cpp sub/bar.cpp
695 # becomes:
696 # foo.cpp sub/bar.cpp bar.cpp
698 # This way we can match both 'make sub/bar.i' and 'make bar.i'
699 _group_srcs = $(sort $(patsubst %.$1,%.i,$(filter %.$1,$2 $(notdir $2))))
701 define PREPROCESS_RULES
702 _PREPROCESSED_$1_FILES := $$(call _group_srcs,$1,$$($2))
703 # Make preprocessed files PHONY so they are always executed, since they are
704 # manual targets and we don't necessarily write to $@.
705 .PHONY: $$(_PREPROCESSED_$1_FILES)
707 # Hack up VPATH so we can reach the sources. Eg: 'make Parser.i' may need to
708 # reach $(srcdir)/frontend/Parser.i
709 vpath %.$1 $$(addprefix $$(srcdir)/,$$(sort $$(dir $$($2))))
710 vpath %.$1 $$(addprefix $$(CURDIR)/,$$(sort $$(dir $$($2))))
712 $$(_PREPROCESSED_$1_FILES): _DEPEND_CFLAGS=
713 $$(_PREPROCESSED_$1_FILES): %.i: %.$1
714 $$(REPORT_BUILD_VERBOSE)
715 $$(addprefix $$(MKDIR) -p ,$$(filter-out .,$$(@D)))
716 $$($3) -C $$(PREPROCESS_OPTION)$$@ $(foreach var,$4,$$($(var))) $$($$(notdir $$<)_FLAGS) $$<
718 endef
720 $(eval $(call PREPROCESS_RULES,cpp,CPPSRCS,CCC,COMPILE_CXXFLAGS))
721 $(eval $(call PREPROCESS_RULES,cc,CPPSRCS,CCC,COMPILE_CXXFLAGS))
722 $(eval $(call PREPROCESS_RULES,cxx,CPPSRCS,CCC,COMPILE_CXXFLAGS))
723 $(eval $(call PREPROCESS_RULES,c,CSRCS,CC,COMPILE_CFLAGS))
724 $(eval $(call PREPROCESS_RULES,mm,CMMSRCS,CCC,COMPILE_CXXFLAGS COMPILE_CMMFLAGS))
726 # Default to pre-processing the actual unified file. This can be overridden
727 # at the command-line to pre-process only the individual source file.
728 PP_UNIFIED ?= 1
730 # PP_REINVOKE gets set on the sub-make to prevent us from going in an
731 # infinite loop if the filename doesn't exist in the unified source files.
732 ifndef PP_REINVOKE
734 MATCH_cpp = \(cpp\|cc|cxx\)
735 UPPER_c = C
736 UPPER_cpp = CPP
737 UPPER_mm = CMM
739 # When building with PP_UNIFIED=0, we also have to look in the Unified files to
740 # find a matching pathname.
741 _get_all_sources = $1 $(if $(filter Unified%,$1),$(shell sed -n 's/\#include "\(.*\)"$$/\1/p' $(filter Unified%,$1)))
742 all_cpp_sources := $(call _get_all_sources,$(CPPSRCS))
743 all_mm_sources := $(call _get_all_sources,$(CMMSRCS))
744 all_c_sources := $(call _get_all_sources,$(CSRCS))
745 all_sources := $(all_cpp_sources) $(all_cmm_sources) $(all_c_sources)
747 # The catch-all %.i rule runs when we pass in a .i filename that doesn't match
748 # one of the *SRCS variables. The two code paths depend on whether or not
749 # we are requesting a unified file (PP_UNIFIED=1, the default) or not:
751 # PP_UNIFIED=1:
752 # - Look for it in any of the Unified files, and re-exec make with
753 # Unified_foo0.i as the target. This gets us the full unified preprocessed
754 # file.
756 # PP_UNIFIED=0:
757 # - If the .i filename is in *SRCS, or in a Unified filename, then we re-exec
758 # make with that filename as the target. The *SRCS variables are modified
759 # to have the Unified sources appended to them so that the static pattern
760 # rules will match.
761 %.i: FORCE
762 ifeq ($(PP_UNIFIED),1)
763 @$(MAKE) PP_REINVOKE=1 \
764 $(or $(addsuffix .i, \
765 $(foreach type,c cpp mm, \
766 $(if $(filter Unified%,$($(UPPER_$(type))SRCS)), \
767 $(shell grep -l '#include "\(.*/\)\?$(basename $@).$(or $(MATCH_$(type)),$(type))"' Unified*.$(type) | sed 's/\.$(type)$$//') \
768 ))),$(error "File not found for preprocessing: $@"))
769 else
770 @$(MAKE) PP_REINVOKE=1 $@ \
771 $(foreach type,c cpp mm,$(UPPER_$(type))SRCS="$(all_$(type)_sources)")
772 endif
774 endif
776 endif
778 # EXTRA_DEPS contains manifests (manually added in Makefile.in ; bug 1498414)
779 %.res: $(or $(RCFILE),%.rc) $(MOZILLA_DIR)/config/create_res.py $(EXTRA_DEPS)
780 $(REPORT_BUILD)
781 $(PYTHON3) $(MOZILLA_DIR)/config/create_res.py $(DEFINES) $(INCLUDES) -o $@ $<
783 $(notdir $(addsuffix .rc,$(PROGRAM) $(SHARED_LIBRARY) $(SIMPLE_PROGRAMS) module)): %.rc: $(RCINCLUDE) $(MOZILLA_DIR)/config/create_rc.py
784 $(PYTHON3) $(MOZILLA_DIR)/config/create_rc.py '$(if $(filter module,$*),,$*)' '$(RCINCLUDE)'
786 # Cancel GNU make built-in implicit rules
787 MAKEFLAGS += -r
789 ifneq (,$(filter WINNT,$(OS_ARCH)))
790 SEP := ;
791 else
792 SEP := :
793 endif
795 EMPTY :=
796 SPACE := $(EMPTY) $(EMPTY)
798 ###############################################################################
799 # Bunch of things that extend the 'export' rule (in order):
800 ###############################################################################
802 ifneq ($(XPI_NAME),)
803 $(FINAL_TARGET):
804 $(NSINSTALL) -D $@
806 export:: $(FINAL_TARGET)
807 endif
809 ################################################################################
810 # The default location for prefs is the gre prefs directory.
811 # PREF_DIR is used for L10N_PREF_JS_EXPORTS in various locales/ directories.
812 PREF_DIR = defaults/pref
814 # If DIST_SUBDIR is defined it indicates that app and gre dirs are
815 # different and that we are building app related resources. Hence,
816 # PREF_DIR should point to the app prefs location.
817 ifneq (,$(DIST_SUBDIR)$(XPI_NAME))
818 PREF_DIR = defaults/preferences
819 endif
821 ################################################################################
822 # CHROME PACKAGING
824 chrome::
825 $(MAKE) realchrome
826 $(LOOP_OVER_DIRS)
828 $(FINAL_TARGET)/chrome: $(call mkdir_deps,$(FINAL_TARGET)/chrome)
830 ifneq (,$(JAR_MANIFEST))
831 ifndef NO_DIST_INSTALL
833 ifdef XPI_NAME
834 ifdef XPI_ROOT_APPID
835 # For add-on packaging we may specify that an application
836 # sub-dir should be added to the root chrome manifest with
837 # a specific application id.
838 MAKE_JARS_FLAGS += --root-manifest-entry-appid='$(XPI_ROOT_APPID)'
839 endif
841 # if DIST_SUBDIR is defined but XPI_ROOT_APPID is not there's
842 # no way langpacks will get packaged right, so error out.
843 ifneq (,$(DIST_SUBDIR))
844 ifndef XPI_ROOT_APPID
845 $(error XPI_ROOT_APPID is not defined - langpacks will break.)
846 endif
847 endif
848 endif
850 misc realchrome:: $(FINAL_TARGET)/chrome
851 $(call py_action,jar_maker,\
852 $(QUIET) -d $(FINAL_TARGET) \
853 $(MAKE_JARS_FLAGS) $(DEFINES) $(ACDEFINES) \
854 $(JAR_MANIFEST))
856 ifdef AB_CD
857 .PHONY: l10n
858 l10n: misc ;
859 endif
860 endif
862 endif
864 # When you move this out of the tools tier, please remove the corresponding
865 # hacks in recursivemake.py that check if Makefile.in sets the variable.
866 ifneq ($(XPI_PKGNAME),)
867 tools realchrome::
868 @echo 'Packaging $(XPI_PKGNAME).xpi...'
869 $(call py_action,zip,-C $(FINAL_TARGET) ../$(XPI_PKGNAME).xpi '*')
870 endif
872 #############################################################################
873 # MDDEPDIR is the subdirectory where all the dependency files are placed.
874 # This uses a make rule (instead of a macro) to support parallel
875 # builds (-jN). If this were done in the LOOP_OVER_DIRS macro, two
876 # processes could simultaneously try to create the same directory.
878 # We use $(CURDIR) in the rule's target to ensure that we don't find
879 # a dependency directory in the source tree via VPATH (perhaps from
880 # a previous build in the source tree) and thus neglect to create a
881 # dependency directory in the object directory, where we really need
882 # it.
884 _MDDEPEND_FILES :=
886 ifneq (,$(filter target-objects target all default,$(MAKECMDGOALS)))
887 _MDDEPEND_FILES += $(addsuffix .pp,$(notdir $(sort $(OBJS) $(PROGOBJS))))
888 endif
890 ifneq (,$(filter host-objects host all default,$(MAKECMDGOALS)))
891 _MDDEPEND_FILES += $(addsuffix .pp,$(notdir $(sort $(HOST_OBJS) $(HOST_PROGOBJS))))
892 endif
894 MDDEPEND_FILES := $(strip $(wildcard $(addprefix $(MDDEPDIR)/,$(_MDDEPEND_FILES))))
895 MDDEPEND_FILES += $(EXTRA_MDDEPEND_FILES)
897 ifneq (,$(MDDEPEND_FILES))
898 -include $(MDDEPEND_FILES)
899 endif
901 ################################################################################
902 # Install/copy rules
904 # The INSTALL_TARGETS variable contains a list of all install target
905 # categories. Each category defines a list of files and executables, and an
906 # install destination,
908 # FOO_FILES := foo bar
909 # FOO_EXECUTABLES := baz
910 # FOO_DEST := target_path
911 # INSTALL_TARGETS += FOO
913 # Additionally, a FOO_TARGET variable may be added to indicate the target for
914 # which the files and executables are installed. Default is "libs".
916 # Finally, a FOO_KEEP_PATH variable may be set to 1 to indicate the paths given
917 # in FOO_FILES/FOO_EXECUTABLES are to be kept at the destination. That is,
918 # if FOO_FILES is bar/baz/qux.h, and FOO_DEST is $(DIST)/include, the installed
919 # file would be $(DIST)/include/bar/baz/qux.h instead of $(DIST)/include/qux.h
921 # If we're using binary nsinstall and it's not built yet, fallback to python nsinstall.
922 ifneq (,$(filter $(DEPTH)/config/nsinstall$(HOST_BIN_SUFFIX),$(install_cmd)))
923 ifeq (,$(wildcard $(DEPTH)/config/nsinstall$(HOST_BIN_SUFFIX)))
924 nsinstall_is_usable = $(if $(wildcard $(DEPTH)/config/nsinstall$(HOST_BIN_SUFFIX)),yes)
926 define install_cmd_override
927 $(1): install_cmd = $$(if $$(nsinstall_is_usable),$$(INSTALL),$$(NSINSTALL_PY) -t) $$(1)
928 endef
929 endif
930 endif
932 install_target_tier = $(or $($(1)_TARGET),libs)
933 INSTALL_TARGETS_TIERS := $(sort $(foreach category,$(INSTALL_TARGETS),$(call install_target_tier,$(category))))
935 install_target_result = $($(1)_DEST:%/=%)/$(if $($(1)_KEEP_PATH),$(2),$(notdir $(2)))
936 install_target_files = $(foreach file,$($(1)_FILES),$(call install_target_result,$(category),$(file)))
937 install_target_executables = $(foreach file,$($(1)_EXECUTABLES),$(call install_target_result,$(category),$(file)))
939 # Work around a GNU make 3.81 bug where it gives $< the wrong value.
940 # See details in bug 934864.
941 define create_dependency
942 $(1): $(2)
943 $(1): $(2)
944 endef
946 define install_target_template
947 $(call install_cmd_override,$(2))
948 $(call create_dependency,$(2),$(1))
949 endef
951 $(foreach category,$(INSTALL_TARGETS),\
952 $(if $($(category)_DEST),,$(error Missing $(category)_DEST)) \
953 $(foreach tier,$(call install_target_tier,$(category)),\
954 $(eval INSTALL_TARGETS_FILES_$(tier) += $(call install_target_files,$(category))) \
955 $(eval INSTALL_TARGETS_EXECUTABLES_$(tier) += $(call install_target_executables,$(category))) \
957 $(foreach file,$($(category)_FILES) $($(category)_EXECUTABLES), \
958 $(eval $(call install_target_template,$(file),$(call install_target_result,$(category),$(file)))) \
962 $(foreach tier,$(INSTALL_TARGETS_TIERS), \
963 $(eval $(tier):: $(INSTALL_TARGETS_FILES_$(tier)) $(INSTALL_TARGETS_EXECUTABLES_$(tier))) \
966 install_targets_sanity = $(if $(filter-out $(notdir $@),$(notdir $(<))),$(error Looks like $@ has an unexpected dependency on $< which breaks INSTALL_TARGETS))
968 $(sort $(foreach tier,$(INSTALL_TARGETS_TIERS),$(INSTALL_TARGETS_FILES_$(tier)))):
969 $(install_targets_sanity)
970 $(call install_cmd,$(IFLAGS1) '$<' '$(@D)')
972 $(sort $(foreach tier,$(INSTALL_TARGETS_TIERS),$(INSTALL_TARGETS_EXECUTABLES_$(tier)))):
973 $(install_targets_sanity)
974 $(call install_cmd,$(IFLAGS2) '$<' '$(@D)')
976 ################################################################################
977 # Preprocessing rules
979 # The PP_TARGETS variable contains a list of all preprocessing target
980 # categories. Each category has associated variables listing input files, the
981 # output directory, extra preprocessor flags, and so on. For example:
983 # FOO := input-file
984 # FOO_PATH := target-directory
985 # FOO_FLAGS := -Dsome_flag
986 # PP_TARGETS += FOO
988 # If PP_TARGETS lists a category name <C> (like FOO, above), then we consult the
989 # following make variables to see what to do:
991 # - <C> lists input files to be preprocessed with mozbuild.action.preprocessor.
992 # We search VPATH for the names given here. If an input file name ends in
993 # '.in', that suffix is omitted from the output file name.
995 # - <C>_PATH names the directory in which to place the preprocessed output
996 # files. We create this directory if it does not already exist. Setting
997 # this variable is optional; if unset, we install the files in $(CURDIR).
999 # - <C>_FLAGS lists flags to pass to mozbuild.action.preprocessor, in addition
1000 # to the usual bunch. Setting this variable is optional.
1002 # - <C>_TARGET names the 'make' target that should depend on creating the output
1003 # files. Setting this variable is optional; if unset, we preprocess the
1004 # files for the 'libs' target.
1006 # - <C>_KEEP_PATH may be set to 1 to indicate the paths given in <C> are to be
1007 # kept under <C>_PATH. That is, if <C> is bar/baz/qux.h.in and <C>_PATH is
1008 # $(DIST)/include, the preprocessed file would be $(DIST)/include/bar/baz/qux.h
1009 # instead of $(DIST)/include/qux.h.
1011 pp_target_tier = $(or $($(1)_TARGET),libs)
1012 PP_TARGETS_TIERS := $(sort $(foreach category,$(PP_TARGETS),$(call pp_target_tier,$(category))))
1014 pp_target_result = $(or $($(1)_PATH:%/=%),$(CURDIR))/$(if $($(1)_KEEP_PATH),$(2:.in=),$(notdir $(2:.in=)))
1015 pp_target_results = $(foreach file,$($(1)),$(call pp_target_result,$(category),$(file)))
1017 $(foreach category,$(PP_TARGETS), \
1018 $(foreach tier,$(call pp_target_tier,$(category)), \
1019 $(eval PP_TARGETS_RESULTS_$(tier) += $(call pp_target_results,$(category))) \
1021 $(foreach file,$($(category)), \
1022 $(eval $(call create_dependency,$(call pp_target_result,$(category),$(file)), \
1023 $(file) $(GLOBAL_DEPS))) \
1025 $(eval $(call pp_target_results,$(category)): PP_TARGET_FLAGS=$($(category)_FLAGS)) \
1028 $(foreach tier,$(PP_TARGETS_TIERS), \
1029 $(eval $(tier):: $(PP_TARGETS_RESULTS_$(tier))) \
1032 PP_TARGETS_ALL_RESULTS := $(sort $(foreach tier,$(PP_TARGETS_TIERS),$(PP_TARGETS_RESULTS_$(tier))))
1033 $(PP_TARGETS_ALL_RESULTS):
1034 $(if $(filter-out $(notdir $@),$(notdir $(<:.in=))),$(error Looks like $@ has an unexpected dependency on $< which breaks PP_TARGETS))
1035 $(RM) '$@'
1036 $(call py_action,preprocessor,--depend $(MDDEPDIR)/$(@F).pp $(PP_TARGET_FLAGS) $(DEFINES) $(ACDEFINES) '$<' -o '$@')
1038 $(filter %.css,$(PP_TARGETS_ALL_RESULTS)): PP_TARGET_FLAGS+=--marker %
1040 # The depfile is based on the filename, and we don't want conflicts. So check
1041 # there's only one occurrence of any given filename in PP_TARGETS_ALL_RESULTS.
1042 PP_TARGETS_ALL_RESULT_NAMES := $(notdir $(PP_TARGETS_ALL_RESULTS))
1043 $(foreach file,$(sort $(PP_TARGETS_ALL_RESULT_NAMES)), \
1044 $(if $(filter-out 1,$(words $(filter $(file),$(PP_TARGETS_ALL_RESULT_NAMES)))), \
1045 $(error Multiple preprocessing rules are creating a $(file) file) \
1049 ifneq (,$(filter $(PP_TARGETS_TIERS) $(PP_TARGETS_ALL_RESULTS),$(MAKECMDGOALS)))
1050 # If the depfile for a preprocessed file doesn't exist, add a dep to force
1051 # re-preprocessing.
1052 $(foreach file,$(PP_TARGETS_ALL_RESULTS), \
1053 $(if $(wildcard $(MDDEPDIR)/$(notdir $(file)).pp), \
1055 $(eval $(file): FORCE) \
1059 MDDEPEND_FILES := $(strip $(wildcard $(addprefix $(MDDEPDIR)/,$(addsuffix .pp,$(notdir $(PP_TARGETS_ALL_RESULTS))))))
1061 ifneq (,$(MDDEPEND_FILES))
1062 -include $(MDDEPEND_FILES)
1063 endif
1065 endif
1067 # Pull in non-recursive targets if this is a partial tree build.
1068 ifndef TOPLEVEL_BUILD
1069 include $(MOZILLA_DIR)/config/makefiles/nonrecursive.mk
1070 endif
1072 ################################################################################
1073 # Special gmake rules.
1074 ################################################################################
1078 # Re-define the list of default suffixes, so gmake won't have to churn through
1079 # hundreds of built-in suffix rules for stuff we don't need.
1081 .SUFFIXES:
1084 # Fake targets. Always run these rules, even if a file/directory with that
1085 # name already exists.
1087 .PHONY: all alltags boot chrome realchrome export install libs makefiles run_apprunner tools $(DIRS) FORCE
1089 # Used as a dependency to force targets to rebuild
1090 FORCE:
1092 # Delete target if error occurs when building target
1093 .DELETE_ON_ERROR:
1095 tags: TAGS
1097 TAGS: $(CSRCS) $(CPPSRCS) $(wildcard *.h)
1098 -etags $(CSRCS) $(CPPSRCS) $(wildcard *.h)
1099 $(LOOP_OVER_DIRS)
1101 ifndef INCLUDED_DEBUGMAKE_MK #{
1102 ## Only parse when an echo* or show* target is requested
1103 ifneq (,$(call isTargetStem,echo,show))
1104 include $(MOZILLA_DIR)/config/makefiles/debugmake.mk
1105 endif #}
1106 endif #}
1108 FREEZE_VARIABLES = \
1109 CSRCS \
1110 CPPSRCS \
1111 EXPORTS \
1112 DIRS \
1113 LIBRARY \
1114 MODULE \
1115 $(NULL)
1117 $(foreach var,$(FREEZE_VARIABLES),$(eval $(var)_FROZEN := '$($(var))'))
1119 CHECK_FROZEN_VARIABLES = $(foreach var,$(FREEZE_VARIABLES), \
1120 $(if $(subst $($(var)_FROZEN),,'$($(var))'),$(error Makefile variable '$(var)' changed value after including rules.mk. Was $($(var)_FROZEN), now $($(var)).)))
1122 libs export::
1123 $(CHECK_FROZEN_VARIABLES)
1125 .DEFAULT_GOAL := $(or $(OVERRIDE_DEFAULT_GOAL),default)
1127 #############################################################################
1128 # Derived targets and dependencies
1130 include $(MOZILLA_DIR)/config/makefiles/autotargets.mk
1131 ifneq ($(NULL),$(AUTO_DEPS))
1132 default all libs tools export:: $(AUTO_DEPS)
1133 endif