mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
0e0bd7bd5a
And since this does go through plenty of make directories, avoid make printing many "Entering" and "Leaving" messages.
26 lines
1.0 KiB
Makefile
26 lines
1.0 KiB
Makefile
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
# You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
include $(topsrcdir)/toolkit/library/libxul.mk
|
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
ifeq (WINNT_1,$(OS_TARGET)_$(MOZ_PROFILE_USE))
|
|
# Wrap linker to measure peak virtual memory usage.
|
|
EXPAND_LIBS_EXEC := $(PYTHON) $(topsrcdir)/config/link.py linker-vsize
|
|
endif
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
ifdef COMPILE_ENVIRONMENT
|
|
target:: $(FINAL_TARGET)/dependentlibs.list
|
|
endif
|
|
|
|
$(FINAL_TARGET)/dependentlibs.list: $(topsrcdir)/toolkit/library/dependentlibs.py $(SHARED_LIBRARY) $(wildcard $(if $(wildcard $(FINAL_TARGET)/dependentlibs.list),$(addprefix $(FINAL_TARGET)/,$(shell cat $(FINAL_TARGET)/dependentlibs.list))))
|
|
$(PYTHON) $< $(SHARED_LIBRARY) -L $(FINAL_TARGET) $(if $(TOOLCHAIN_PREFIX),$(addprefix -p ,$(TOOLCHAIN_PREFIX))) > $@
|
|
|
|
.PHONY: gtestxul
|
|
gtestxul:
|
|
$(MAKE) -C $(DEPTH) toolkit/library/gtest/target LINK_GTEST=1
|