mirror of https://github.com/roytam1/boc-uxp.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
151 lines
5.9 KiB
151 lines
5.9 KiB
# 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/. |
|
|
|
AB_CD = $(MOZ_UI_LOCALE) |
|
|
|
DEFINES += \ |
|
-DNAVIGATOR_ICO=\"$(DIST)/branding/$(MOZ_APP_NAME).ico\" \ |
|
-DHTML_FILE_ICO=\"$(DIST)/branding/html-file.ico\" \ |
|
$(NULL) |
|
|
|
# Build a binary bootstrapping with XRE_main |
|
|
|
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 |
|
|
|
ifeq ($(OS_ARCH),WINNT) |
|
# Rebuild seamonkey.exe if the manifest changes - it's included by splash.rc. |
|
# (this dependency should really be just for seamonkey.exe, not other targets) |
|
# Note the manifest file exists in the tree, so we use the explicit filename |
|
# here. |
|
EXTRA_DEPS += borealis.exe.manifest |
|
endif |
|
|
|
include $(topsrcdir)/config/rules.mk |
|
|
|
libs:: |
|
ifeq ($(OS_ARCH),WINNT) |
|
$(EXIT_ON_ERROR) \ |
|
$(PERL) -pe 's/(?<!\r)\n/\r\n/g;' < $(DIST)/branding/license.txt > $(DIST)/bin/license.txt |
|
else |
|
$(INSTALL) $(IFLAGS1) $(DIST)/branding/license.txt $(DIST)/bin/ |
|
endif |
|
|
|
ifneq ($(OS_ARCH),WINNT) |
|
|
|
libs:: |
|
cp -p $(MOZ_APP_NAME)$(BIN_SUFFIX) $(DIST)/bin/$(MOZ_APP_NAME)-bin$(BIN_SUFFIX) |
|
|
|
endif |
|
|
|
libs:: blocklist.xml |
|
$(INSTALL) $(IFLAGS1) $^ $(DIST)/bin |
|
|
|
ifdef MOZ_UPDATER |
|
libs:: |
|
$(call py_action,preprocessor,-Fsubstitution -DMOZ_APP_DISPLAYNAME=$(MOZ_APP_DISPLAYNAME) \ |
|
$(srcdir)/updater.ini -o $(DIST)/bin/updater.ini) |
|
endif |
|
|
|
ifneq (,$(filter-out WINNT Darwin,$(OS_ARCH))) |
|
$(MOZ_APP_NAME).1: seamonkey.man.in $(GLOBAL_DEPS) $(DEPTH)/config/autoconf.mk |
|
@sed -e "s|\@bindir\@|$(bindir)|g" -e "s|\@mozappdir\@|$(mozappdir)|g" \ |
|
-e "s|\@MOZ_APP_DISPLAYNAME\@|$(MOZ_APP_DISPLAYNAME)|g" \ |
|
-e "s|\@MOZ_APP_NAME\@|$(MOZ_APP_NAME)|g" \ |
|
-e "s|\@MOZ_APP_VERSION\@|${MOZ_APP_VERSION}|g" < $< > $@ |
|
|
|
libs:: $(MOZ_APP_NAME).1 |
|
$(INSTALL) $< $(DIST)/man/man1 |
|
|
|
GARBAGE += $(MOZ_APP_NAME).1 |
|
GARBAGE += $(addprefix $(DIST)/bin/defaults/pref/, browser-prefs.js) |
|
endif |
|
|
|
ifeq ($(MOZ_PACKAGER_FORMAT),omni) |
|
# Make extensions end up as XPIs instead of flat chrome when doing omni.jar. |
|
# Extensions that appear in dist/bin/extensions will get bundled with the |
|
# application, ones that appear in dist/bin/distribution/extensions will be |
|
# copied to the profile in installed builds. |
|
# NOTE: This is a hack to run this at the end of compilation, would be nicer |
|
# if this was done right away for built-in extensions in omnijar mode. |
|
|
|
ABS_STAGE = $(abspath $(STAGEDIST)) |
|
|
|
define _PACKAGE_EXTENSIONS |
|
@echo "Packaging $(dir).xpi..." |
|
if test -d "$(ABS_STAGE)/$(dir)"; then \ |
|
cd $(ABS_STAGE)/$(dir)/; \ |
|
$(ZIP) -Dr9mX ../$(dir).xpi * -x \*/.mkdir.done; \ |
|
cd ..; rm -rf $(ABS_STAGE)/$(dir); \ |
|
fi |
|
|
|
endef # do not remove the blank line! |
|
|
|
# GUIDs |
|
# {972ce4c6-7e08-4474-a285-3208198ce6fd} Default theme |
|
DONOTPACK = {972ce4c6-7e08-4474-a285-3208198ce6fd} |
|
|
|
pack-ext: $(STAGEDIST) |
|
@echo "Packaging extensions..." |
|
$(foreach dir,$(filter-out $(DONOTPACK),$(subst $(STAGEDIST)/,,$(wildcard $(STAGEDIST)/*))),$(_PACKAGE_EXTENSIONS)) |
|
|
|
tools:: |
|
@$(MAKE) pack-ext STAGEDIST="$(DIST)/bin/extensions" |
|
|
|
endif |
|
|
|
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT)) |
|
# Anything below the above ifdef won't be included in mac builds. So be very |
|
# careful what you add here. |
|
|
|
MAC_APP_NAME = $(MOZ_APP_DISPLAYNAME) |
|
|
|
ifdef MOZ_DEBUG |
|
MAC_APP_NAME := $(MAC_APP_NAME)Debug |
|
endif |
|
|
|
LOWER_MAC_APP_NAME = $(shell echo $(MAC_APP_NAME) | tr '[A-Z]' '[a-z]') |
|
|
|
ifeq (zh-TW,$(AB_CD)) |
|
LPROJ_ROOT := $(subst -,_,$(AB_CD)) |
|
else |
|
LPROJ_ROOT := $(firstword $(subst -, ,$(AB_CD))) |
|
endif |
|
LPROJ := Contents/Resources/$(LPROJ_ROOT).lproj |
|
|
|
clean clobber repackage:: |
|
$(RM) -r $(DIST)/$(MOZ_MACBUNDLE_NAME) |
|
|
|
tools:: $(PROGRAM) |
|
mkdir -p $(DIST)/$(MOZ_MACBUNDLE_NAME)/Contents/MacOS |
|
rsync -a --exclude CVS --exclude "*.in" $(srcdir)/macbuild/Contents $(DIST)/$(MOZ_MACBUNDLE_NAME) --exclude English.lproj |
|
mkdir -p $(DIST)/$(MOZ_MACBUNDLE_NAME)/$(LPROJ) |
|
rsync -a --exclude CVS --exclude "*.in" $(srcdir)/macbuild/Contents/Resources/English.lproj/ $(DIST)/$(MOZ_MACBUNDLE_NAME)/$(LPROJ) |
|
sed -e "s/\@MOZ_APP_NAME\@/$(MOZ_APP_NAME)/" -e "s/\@MAC_APP_NAME\@/$(MAC_APP_NAME)/" -e "s/\@MOZ_APP_DISPLAYNAME\@/$(MOZ_APP_DISPLAYNAME)/" -e "s/\@MOZ_APP_VERSION\@/$(MOZ_APP_VERSION)/" $(srcdir)/macbuild/Contents/Info.plist.in > $(DIST)/$(MOZ_MACBUNDLE_NAME)/Contents/Info.plist |
|
sed -e "s/\@MOZ_APP_NAME\@/$(MOZ_APP_NAME)/" -e "s/\@MAC_APP_NAME\@/$(MAC_APP_NAME)/" -e "s/\@MOZ_APP_DISPLAYNAME\@/$(MOZ_APP_DISPLAYNAME)/" -e "s/\@MOZ_APP_VERSION\@/$(MOZ_APP_VERSION)/" $(srcdir)/macbuild/Contents/Resources/English.lproj/InfoPlist.strings.in | iconv -f UTF-8 -t UTF-16 > $(DIST)/$(MOZ_MACBUNDLE_NAME)/$(LPROJ)/InfoPlist.strings |
|
rsync -a --exclude-from='$(srcdir)/macbuild/Contents/MacOS-files.in' $(DIST)/bin/ $(DIST)/$(MOZ_MACBUNDLE_NAME)/Contents/Resources |
|
rsync -a --include-from='$(srcdir)/macbuild/Contents/MacOS-files.in' --exclude '*' $(DIST)/bin/ $(DIST)/$(MOZ_MACBUNDLE_NAME)/Contents/MacOS |
|
# MacOS-files-copy.in is a list of files that should be copies rather |
|
# than symlinks and placed in .app/Contents/MacOS |
|
rsync -aL --include-from='$(srcdir)/macbuild/Contents/MacOS-files-copy.in' --exclude '*' $(DIST)/bin/ '$(DIST)/$(MOZ_MACBUNDLE_NAME)/Contents/MacOS' |
|
rm -f $(DIST)/$(MOZ_MACBUNDLE_NAME)/Contents/$(APPFILES)/mangle $(DIST)/$(MOZ_MACBUNDLE_NAME)/Contents/$(APPFILES)/shlibsign |
|
rm -f $(DIST)/$(MOZ_MACBUNDLE_NAME)/Contents/MacOS/$(PROGRAM) |
|
rsync -aL $(PROGRAM) $(DIST)/$(MOZ_MACBUNDLE_NAME)/Contents/MacOS |
|
-cp -L $(DIST)/bin/mangle $(DIST)/bin/shlibsign $(DIST)/$(MOZ_MACBUNDLE_NAME)/Contents/$(APPFILES) |
|
cp -RL $(DIST)/branding/icons/*.icns $(DIST)/$(MOZ_MACBUNDLE_NAME)/Contents/Resources/ |
|
printf APPLMOZZ > $(DIST)/$(MOZ_MACBUNDLE_NAME)/Contents/PkgInfo |
|
# remove CVS dirs from packaged app |
|
find $(DIST)/$(MOZ_MACBUNDLE_NAME) -type d -name "CVS" -prune -exec rm -rf {} \; |
|
endif
|
|
|