2012-05-21 04:12:37 -07:00
|
|
|
# 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/.
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-12-27 23:24:02 -08:00
|
|
|
MOZ_GLUE_LDFLAGS =
|
2011-09-02 23:19:06 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
|
|
|
ifdef WIN32_REDIST_DIR
|
2011-04-22 10:33:36 -07:00
|
|
|
ifndef MOZ_DEBUG
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-11-23 07:20:21 -08:00
|
|
|
ifeq (1600,$(_MSC_VER))
|
|
|
|
REDIST_FILES = \
|
2011-10-03 18:57:00 -07:00
|
|
|
msvcp100.dll \
|
|
|
|
msvcr100.dll \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq (1700,$(_MSC_VER))
|
|
|
|
REDIST_FILES = \
|
|
|
|
msvcp110.dll \
|
|
|
|
msvcr110.dll \
|
|
|
|
$(NULL)
|
2009-11-23 07:20:21 -08:00
|
|
|
endif
|
|
|
|
|
2013-07-02 18:52:32 -07:00
|
|
|
ifeq (1800,$(_MSC_VER))
|
|
|
|
REDIST_FILES = \
|
|
|
|
msvcp120.dll \
|
|
|
|
msvcr120.dll \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
ifdef REDIST_FILES
|
2012-04-03 13:08:16 -07:00
|
|
|
libs-preqs = \
|
|
|
|
$(call mkdir_deps,$(FINAL_TARGET)) \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
libs:: $(libs-preqs)
|
2013-12-02 13:34:21 -08:00
|
|
|
install --preserve-timestamps $(foreach f,$(REDIST_FILES),'$(WIN32_REDIST_DIR)'/$(f)) $(FINAL_TARGET)
|
2007-03-22 10:30:00 -07:00
|
|
|
endif
|
|
|
|
|
2011-04-22 10:33:36 -07:00
|
|
|
endif # ! MOZ_DEBUG
|
2011-04-17 07:47:19 -07:00
|
|
|
endif # WIN32_REDIST_DIR
|
2011-11-19 05:35:03 -08:00
|
|
|
|
|
|
|
# run the binscope tool to make sure the binary and all libraries
|
|
|
|
# are using all available Windows OS-level security mechanisms
|
|
|
|
check::
|
2011-11-21 08:56:20 -08:00
|
|
|
$(PYTHON) $(srcdir)/autobinscope.py $(DIST)/bin/$(MOZ_APP_NAME)$(BIN_SUFFIX) $(DIST)/crashreporter-symbols/
|
2011-11-19 05:35:03 -08:00
|
|
|
$(PYTHON) $(srcdir)/autobinscope.py $(DIST)/bin/plugin-container.exe $(DIST)/crashreporter-symbols/
|