mirror of https://github.com/roytam1/kmeleon.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.
185 lines
5.7 KiB
185 lines
5.7 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/. |
|
|
|
dist_dest = $(DIST)/$(MOZ_MACBUNDLE_NAME) |
|
|
|
PREF_JS_EXPORTS = $(srcdir)/prefs/kmeleon.js \ |
|
$(srcdir)/prefs/kmprefs.js \ |
|
$(srcdir)/prefs/skin.js \ |
|
$(NULL) |
|
|
|
|
|
# hardcode en-US for the moment |
|
AB_CD = en-US |
|
|
|
DEFINES += \ |
|
-DAB_CD=$(AB_CD) \ |
|
-DFIREFOX_ICO='"$(DIST)/branding/firefox.ico"' \ |
|
-DDOCUMENT_ICO='"$(DIST)/branding/document.ico"' \ |
|
-DNEWWINDOW_ICO='"$(DIST)/branding/newwindow.ico"' \ |
|
-DNEWTAB_ICO='"$(DIST)/branding/newtab.ico"' \ |
|
-DPBMODE_ICO='"$(DIST)/branding/pbmode.ico"' \ |
|
$(NULL) |
|
|
|
#ifdef LIBXUL_SDK #{ |
|
#PREF_JS_EXPORTS += $(srcdir)/profile/channel-prefs.js |
|
#endif #} LIBXUL_SDK |
|
|
|
# Build a binary bootstrapping with XRE_main |
|
|
|
LIBS += \ |
|
$(XPCOM_STANDALONE_GLUE_LDOPTS) \ |
|
$(MOZ_JS_LIBS) \ |
|
$(NULL) |
|
|
|
#OS_LIBS += $(call EXPAND_LIBNAME,ole32 comdlg32 shell32 version) |
|
|
|
ifdef MOZ_LINKER |
|
LIBS += $(MOZ_ZLIB_LIBS) |
|
endif |
|
|
|
ifdef HAVE_CLOCK_MONOTONIC |
|
LIBS += $(REALTIME_LIBS) |
|
endif |
|
|
|
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 firefox.exe if the manifest changes - it's included by splash.rc. |
|
# (this dependency should really be just for firefox.exe, not other targets) |
|
# Note the manifest file exists in the tree, so we use the explicit filename |
|
# here. |
|
#EXTRA_DEPS += kmeleon.exe.manifest |
|
#endif |
|
|
|
PROGRAMS_DEST = $(DIST)/bin |
|
|
|
include $(topsrcdir)/config/rules.mk |
|
|
|
ifneq (,$(filter-out WINNT,$(OS_ARCH))) |
|
|
|
ifdef COMPILE_ENVIRONMENT |
|
libs:: |
|
cp -p $(MOZ_APP_NAME)$(BIN_SUFFIX) $(DIST)/bin/$(MOZ_APP_NAME)-bin$(BIN_SUFFIX) |
|
endif |
|
|
|
GARBAGE += $(addprefix $(FINAL_TARGET)/defaults/pref/, kmeleon.js) |
|
GARBAGE += $(addprefix $(FINAL_TARGET)/defaults/pref/, kmprefs.js) |
|
GARBAGE += $(addprefix $(FINAL_TARGET)/defaults/pref/, skin.js) |
|
|
|
endif |
|
|
|
ifdef MOZ_WIDGET_GTK |
|
libs:: |
|
$(INSTALL) $(IFLAGS1) $(DIST)/branding/mozicon128.png $(FINAL_TARGET)/icons |
|
$(INSTALL) $(IFLAGS1) $(DIST)/branding/default16.png $(FINAL_TARGET)/chrome/icons/default |
|
$(INSTALL) $(IFLAGS1) $(DIST)/branding/default32.png $(FINAL_TARGET)/chrome/icons/default |
|
$(INSTALL) $(IFLAGS1) $(DIST)/branding/default48.png $(FINAL_TARGET)/chrome/icons/default |
|
endif |
|
|
|
PROFILE_FILES = \ |
|
prefs.js \ |
|
menus.cfg \ |
|
accel.cfg \ |
|
macros \ |
|
$(NULL) |
|
|
|
libs:: $(addprefix $(srcdir)/profile/,$(PROFILE_FILES)) |
|
$(INSTALL) $(IFLAGS1) $^ $(FINAL_TARGET)/defaults/profile |
|
#libs:: $(srcdir)/profile/chrome/adblock.css |
|
# $(INSTALL) $(IFLAGS1) $^ $(FINAL_TARGET)/defaults/profile/chrome |
|
|
|
#libs:: $(srcdir)/profile/prefs.js |
|
# $(INSTALL) $(IFLAGS1) $^ $(FINAL_TARGET)/defaults/profile |
|
|
|
SETTINGS_FILES = \ |
|
accel.cfg \ |
|
menus.cfg \ |
|
toolbars.cfg \ |
|
$(NULL) |
|
|
|
libs:: $(addprefix $(srcdir)/settings/,$(SETTINGS_FILES)) |
|
$(INSTALL) $(IFLAGS1) $^ $(FINAL_TARGET)/defaults/settings |
|
|
|
libs:: $(srcdir)/settings/search.xml |
|
$(INSTALL) $(IFLAGS1) $^ $(FINAL_TARGET)/defaults |
|
|
|
libs:: $(srcdir)/settings/commands.html |
|
$(INSTALL) $(IFLAGS1) $^ $(FINAL_TARGET)/defaults |
|
|
|
|
|
#ifndef LIBXUL_SDK |
|
# channel-prefs.js is handled separate from other prefs due to bug 756325 |
|
#libs:: $(srcdir)/profile/channel-prefs.js |
|
# $(NSINSTALL) -D $(DIST)/bin/defaults/pref |
|
# $(call py_action,preprocessor,$(PREF_PPFLAGS) $(ACDEFINES) $^ -o $(DIST)/bin/defaults/pref/channel-prefs.js) |
|
#endif |
|
|
|
libs:: $(srcdir)/blocklist.xml |
|
$(INSTALL) $(IFLAGS1) $^ $(FINAL_TARGET) |
|
libs:: $(srcdir)/readme.html |
|
$(INSTALL) $(IFLAGS1) $^ $(FINAL_TARGET) |
|
|
|
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT)) |
|
|
|
MAC_APP_NAME = $(MOZ_APP_DISPLAYNAME) |
|
|
|
ifdef MOZ_DEBUG |
|
MAC_APP_NAME := $(MAC_APP_NAME)Debug |
|
endif |
|
|
|
AB_CD = $(MOZ_UI_LOCALE) |
|
|
|
AB := $(firstword $(subst -, ,$(AB_CD))) |
|
|
|
clean clobber repackage:: |
|
$(RM) -r $(dist_dest) |
|
|
|
ifdef LIBXUL_SDK |
|
APPFILES = Resources |
|
else |
|
APPFILES = MacOS |
|
endif |
|
|
|
MAC_BUNDLE_VERSION = $(shell $(PYTHON) $(srcdir)/macversion.py --version=$(MOZ_APP_VERSION) --buildid=$(DEPTH)/config/buildid) |
|
|
|
.PHONY: repackage |
|
tools repackage:: $(PROGRAM) |
|
$(MKDIR) -p $(dist_dest)/Contents/MacOS |
|
$(MKDIR) -p $(dist_dest)/Contents/Resources/$(AB).lproj |
|
rsync -a --exclude '*.in' $(srcdir)/macbuild/Contents $(dist_dest) --exclude English.lproj |
|
rsync -a --exclude '*.in' $(srcdir)/macbuild/Contents/Resources/English.lproj/ $(dist_dest)/Contents/Resources/$(AB).lproj |
|
sed -e 's/%APP_VERSION%/$(MOZ_APP_VERSION)/' -e 's/%MAC_APP_NAME%/$(MAC_APP_NAME)/' -e 's/%MOZ_MACBUNDLE_ID%/$(MOZ_MACBUNDLE_ID)/' -e 's/%MAC_BUNDLE_VERSION%/$(MAC_BUNDLE_VERSION)/' $(srcdir)/macbuild/Contents/Info.plist.in > $(dist_dest)/Contents/Info.plist |
|
sed -e 's/%MAC_APP_NAME%/$(MAC_APP_NAME)/' $(srcdir)/macbuild/Contents/Resources/English.lproj/InfoPlist.strings.in | iconv -f UTF-8 -t UTF-16 > $(dist_dest)/Contents/Resources/$(AB).lproj/InfoPlist.strings |
|
rsync -a $(DIST)/bin/ $(dist_dest)/Contents/$(APPFILES) |
|
$(RM) $(dist_dest)/Contents/MacOS/$(PROGRAM) |
|
rsync -aL $(PROGRAM) $(dist_dest)/Contents/MacOS |
|
cp -RL $(DIST)/branding/firefox.icns $(dist_dest)/Contents/Resources/firefox.icns |
|
cp -RL $(DIST)/branding/document.icns $(dist_dest)/Contents/Resources/document.icns |
|
printf APPLMOZB > $(dist_dest)/Contents/PkgInfo |
|
endif |
|
|
|
ifdef LIBXUL_SDK #{ |
|
ifndef SKIP_COPY_XULRUNNER #{ |
|
libs:: |
|
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT)) #{ |
|
rsync -a --copy-unsafe-links $(LIBXUL_DIST)/XUL.framework $(dist_dest)/Contents/Frameworks |
|
else |
|
$(NSINSTALL) -D $(DIST)/bin/xulrunner |
|
(cd $(LIBXUL_SDK)/bin && tar $(TAR_CREATE_FLAGS) - .) | (cd $(DIST)/bin/xulrunner && tar -xf -) |
|
endif #} cocoa |
|
endif #} SKIP_COPY_XULRUNNER |
|
endif #} LIBXUL_SDK
|
|
|