diff options
Diffstat (limited to 'build/win32/Makefile.in')
-rw-r--r-- | build/win32/Makefile.in | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/build/win32/Makefile.in b/build/win32/Makefile.in new file mode 100644 index 000000000..c96099d8f --- /dev/null +++ b/build/win32/Makefile.in @@ -0,0 +1,14 @@ +# 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 + +# run the binscope tool to make sure the binary and all libraries +# are using all available Windows OS-level security mechanisms +# Don't do this in clang-cl since it doesn't support debug information yet. +ifndef CLANG_CL +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/ +endif |