mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-04 10:05:51 +00:00
30 lines
957 B
Makefile
30 lines
957 B
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)/config/rules.mk
|
|
|
|
ifdef WIN32_REDIST_DIR
|
|
|
|
REDIST_FILES = \
|
|
$(MSVC_C_RUNTIME_DLL) \
|
|
$(MSVC_CXX_RUNTIME_DLL) \
|
|
$(MSVC_APPCRT_DLL) \
|
|
$(MSVC_DESKTOPCRT_DLL) \
|
|
$(NULL)
|
|
|
|
libs-preqs = \
|
|
$(call mkdir_deps,$(FINAL_TARGET)) \
|
|
$(NULL)
|
|
|
|
libs:: $(libs-preqs)
|
|
install --preserve-timestamps $(foreach f,$(REDIST_FILES),'$(WIN32_REDIST_DIR)'/$(f)) $(FINAL_TARGET)
|
|
|
|
endif # WIN32_REDIST_DIR
|
|
|
|
# run the binscope tool to make sure the binary and all libraries
|
|
# are using all available Windows OS-level security mechanisms
|
|
check::
|
|
$(PYTHON) $(srcdir)/autobinscope.py $(DIST)/bin/$(MOZ_APP_NAME)$(BIN_SUFFIX) $(DIST)/crashreporter-symbols/
|
|
$(PYTHON) $(srcdir)/autobinscope.py $(DIST)/bin/plugin-container.exe $(DIST)/crashreporter-symbols/
|