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