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