2011-06-20 23:38:46 +04:00
|
|
|
# -*- makefile -*-
|
1999-04-13 08:15:34 +04:00
|
|
|
#
|
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/.
|
1999-04-13 08:15:34 +04:00
|
|
|
|
2012-04-30 10:05:34 +04:00
|
|
|
SDK_BINARY = run-mozilla.sh
|
|
|
|
|
2013-09-20 15:37:53 +04:00
|
|
|
ifneq ($(LLVM_SYMBOLIZER),)
|
|
|
|
# Install a copy of the llvm-symbolizer binary to dist/bin, so it can
|
|
|
|
# be used for symbolizing traces for e.g. AddressSanitizer
|
|
|
|
LLVMSYM_EXECUTABLES=$(LLVM_SYMBOLIZER)
|
|
|
|
LLVMSYM_DEST=$(FINAL_TARGET)
|
|
|
|
INSTALL_TARGETS += LLVMSYM
|
|
|
|
endif
|
|
|
|
|
1999-09-02 03:27:16 +04:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
1999-04-13 08:15:34 +04:00
|
|
|
|
2007-08-03 18:46:17 +04:00
|
|
|
libs:: $(srcdir)/run-mozilla.sh
|
2000-04-14 00:17:35 +04:00
|
|
|
$(INSTALL) $< $(DIST)/bin
|
2011-06-20 23:38:46 +04:00
|
|
|
|
|
|
|
# EOF
|