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/.
|
2010-12-14 04:07:21 +03:00
|
|
|
|
2010-12-10 01:47:21 +03:00
|
|
|
# finds the location of the browser and puts it in the variable $(browser_path)
|
|
|
|
|
2014-02-11 02:57:01 +04:00
|
|
|
ifneq (,$(filter WINNT,$(OS_ARCH)))
|
2013-09-05 10:08:13 +04:00
|
|
|
program = $(MOZ_APP_NAME)$(BIN_SUFFIX)
|
2010-12-10 01:47:21 +03:00
|
|
|
else
|
2013-09-05 10:08:13 +04:00
|
|
|
program = $(MOZ_APP_NAME)-bin$(BIN_SUFFIX)
|
2010-12-10 01:47:21 +03:00
|
|
|
endif
|
|
|
|
|
|
|
|
TARGET_DIST = $(TARGET_DEPTH)/dist
|
|
|
|
|
|
|
|
ifeq ($(OS_ARCH),Darwin)
|
2013-09-05 10:08:13 +04:00
|
|
|
browser_path = $(TARGET_DIST)/$(MOZ_MACBUNDLE_NAME)/Contents/MacOS/$(program)
|
2010-12-10 01:47:21 +03:00
|
|
|
else
|
2013-09-05 10:08:13 +04:00
|
|
|
browser_path = $(TARGET_DIST)/bin/$(program)
|
2010-12-10 01:47:21 +03:00
|
|
|
endif
|