michael@0: # -*- makefile -*- michael@0: # michael@0: # This Source Code Form is subject to the terms of the Mozilla Public michael@0: # License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: # file, You can obtain one at http://mozilla.org/MPL/2.0/. michael@0: michael@0: SDK_BINARY = run-mozilla.sh michael@0: michael@0: ifneq ($(LLVM_SYMBOLIZER),) michael@0: # Install a copy of the llvm-symbolizer binary to dist/bin, so it can michael@0: # be used for symbolizing traces for e.g. AddressSanitizer michael@0: LLVMSYM_EXECUTABLES=$(LLVM_SYMBOLIZER) michael@0: LLVMSYM_DEST=$(FINAL_TARGET) michael@0: INSTALL_TARGETS += LLVMSYM michael@0: endif michael@0: michael@0: include $(topsrcdir)/config/rules.mk michael@0: michael@0: libs:: $(srcdir)/run-mozilla.sh michael@0: $(INSTALL) $< $(DIST)/bin michael@0: michael@0: # EOF