2012-05-21 04:12:37 -07: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/.
|
2009-07-10 12:58:14 -07:00
|
|
|
|
2012-05-03 03:22:33 -07:00
|
|
|
ifneq ($(dir $(PROGRAM)),./)
|
|
|
|
GENERATED_DIRS = $(dir $(PROGRAM))
|
|
|
|
endif
|
2011-10-27 05:53:20 -07:00
|
|
|
|
2012-05-08 14:36:07 -07:00
|
|
|
ifeq (android,$(MOZ_WIDGET_TOOLKIT))
|
2011-08-29 10:21:22 -07:00
|
|
|
WRAP_LDFLAGS =
|
2010-10-15 11:28:07 -07:00
|
|
|
else
|
2009-07-10 12:58:14 -07:00
|
|
|
LIBS += \
|
|
|
|
$(XPCOM_LIBS) \
|
|
|
|
$(NSPR_LIBS) \
|
|
|
|
$(NULL)
|
2010-10-15 11:28:07 -07:00
|
|
|
endif
|
2009-07-10 12:58:14 -07:00
|
|
|
|
2013-03-08 11:43:32 -08:00
|
|
|
ifeq (gonk,$(MOZ_WIDGET_TOOLKIT))
|
|
|
|
LIBS += \
|
|
|
|
-lbinder \
|
|
|
|
-lutils \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
2009-07-10 12:58:14 -07:00
|
|
|
ifndef MOZ_WINCONSOLE
|
|
|
|
ifdef MOZ_DEBUG
|
|
|
|
MOZ_WINCONSOLE = 1
|
|
|
|
else
|
|
|
|
MOZ_WINCONSOLE = 0
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
# This switches $(INSTALL) to copy mode, like $(SYSINSTALL), so things that
|
|
|
|
# shouldn't get 755 perms need $(IFLAGS1) for either way of calling nsinstall.
|
|
|
|
NSDISTMODE = copy
|
|
|
|
|
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
2012-04-10 10:45:15 -07:00
|
|
|
ifeq ($(OS_ARCH),WINNT) #{
|
2013-10-30 16:58:45 -07:00
|
|
|
|
|
|
|
ifdef MOZ_CONTENT_SANDBOX
|
|
|
|
LIBS += ../../security/sandbox/$(LIB_PREFIX)sandbox_s.$(LIB_SUFFIX)
|
|
|
|
LIBS += $(NSPR_LIBS)
|
|
|
|
endif
|
|
|
|
|
2013-09-26 12:27:17 -07:00
|
|
|
# Note the manifest file exists in the tree, so we use the explicit filename
|
|
|
|
# here.
|
|
|
|
EXTRA_DEPS += plugin-container.exe.manifest
|
2012-04-10 10:45:15 -07:00
|
|
|
endif #}
|
2010-06-11 05:28:03 -07:00
|
|
|
|
2012-04-10 10:45:15 -07:00
|
|
|
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT)) #{
|
2010-06-11 05:28:03 -07:00
|
|
|
|
|
|
|
libs::
|
|
|
|
$(NSINSTALL) -D $(DIST)/bin/$(PROGRAM).app
|
2013-12-02 13:34:21 -08:00
|
|
|
rsync -a -C --exclude '*.in' $(srcdir)/macbuild/Contents $(DIST)/bin/$(PROGRAM).app
|
|
|
|
sed -e 's/%PROGRAM%/$(PROGRAM)/' $(srcdir)/macbuild/Contents/Info.plist.in > $(DIST)/bin/$(PROGRAM).app/Contents/Info.plist
|
|
|
|
sed -e 's/%APP_NAME%/$(MOZ_APP_DISPLAYNAME)/' $(srcdir)/macbuild/Contents/Resources/English.lproj/InfoPlist.strings.in | \
|
2010-06-11 05:28:03 -07:00
|
|
|
iconv -f UTF-8 -t UTF-16 > $(DIST)/bin/$(PROGRAM).app/Contents/Resources/English.lproj/InfoPlist.strings
|
|
|
|
$(NSINSTALL) -D $(DIST)/bin/$(PROGRAM).app/Contents/MacOS
|
|
|
|
$(NSINSTALL) $(PROGRAM) $(DIST)/bin/$(PROGRAM).app/Contents/MacOS
|
2012-04-10 10:45:15 -07:00
|
|
|
$(RM) $(DIST)/bin/$(PROGRAM)
|
|
|
|
endif #}
|