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/.
|
2009-07-10 19:58:14 +00:00
|
|
|
|
2012-05-03 10:22:33 +00:00
|
|
|
ifneq ($(dir $(PROGRAM)),./)
|
|
|
|
GENERATED_DIRS = $(dir $(PROGRAM))
|
|
|
|
endif
|
2011-10-27 12:53:20 +00:00
|
|
|
|
2009-07-10 19:58:14 +00: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
|
|
|
|
|
2014-07-30 07:24:00 +00:00
|
|
|
ifneq ($(MOZ_WIDGET_TOOLKIT),android)
|
|
|
|
#LIBS += ../contentproc/$(LIB_PREFIX)plugin-container.$(LIB_SUFFIX)
|
|
|
|
endif
|
|
|
|
|
2012-04-10 17:45:15 +00:00
|
|
|
ifeq ($(OS_ARCH),WINNT) #{
|
2013-09-26 19:27:17 +00: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 17:45:15 +00:00
|
|
|
endif #}
|
2010-06-11 12:28:03 +00:00
|
|
|
|
2012-04-10 17:45:15 +00:00
|
|
|
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT)) #{
|
2010-06-11 12:28:03 +00:00
|
|
|
|
|
|
|
libs::
|
|
|
|
$(NSINSTALL) -D $(DIST)/bin/$(PROGRAM).app
|
2013-12-02 21:34:21 +00: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 12:28:03 +00: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 17:45:15 +00:00
|
|
|
$(RM) $(DIST)/bin/$(PROGRAM)
|
|
|
|
endif #}
|