2012-05-21 15:12:37 +04: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/.
|
2006-02-02 23:56:10 +03:00
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
|
|
|
ifdef WIN32_REDIST_DIR
|
|
|
|
|
2009-11-23 18:20:21 +03:00
|
|
|
REDIST_FILES = \
|
2014-06-27 19:24:29 +04:00
|
|
|
$(MSVC_C_RUNTIME_DLL) \
|
|
|
|
$(MSVC_CXX_RUNTIME_DLL) \
|
2015-01-30 04:36:39 +03:00
|
|
|
$(MSVC_APPCRT_DLL) \
|
|
|
|
$(MSVC_DESKTOPCRT_DLL) \
|
2011-10-04 05:57:00 +04:00
|
|
|
$(NULL)
|
|
|
|
|
2012-04-04 00:08:16 +04:00
|
|
|
libs-preqs = \
|
|
|
|
$(call mkdir_deps,$(FINAL_TARGET)) \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
libs:: $(libs-preqs)
|
2013-12-03 01:34:21 +04:00
|
|
|
install --preserve-timestamps $(foreach f,$(REDIST_FILES),'$(WIN32_REDIST_DIR)'/$(f)) $(FINAL_TARGET)
|
2006-02-02 23:56:10 +03:00
|
|
|
|
2011-04-17 18:47:19 +04:00
|
|
|
endif # WIN32_REDIST_DIR
|
2011-11-19 17:35:03 +04: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 20:56:20 +04:00
|
|
|
$(PYTHON) $(srcdir)/autobinscope.py $(DIST)/bin/$(MOZ_APP_NAME)$(BIN_SUFFIX) $(DIST)/crashreporter-symbols/
|
2011-11-19 17:35:03 +04:00
|
|
|
$(PYTHON) $(srcdir)/autobinscope.py $(DIST)/bin/plugin-container.exe $(DIST)/crashreporter-symbols/
|