mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
100 lines
3.3 KiB
Makefile
100 lines
3.3 KiB
Makefile
# vim:set ts=8 sw=8 sts=8 et:
|
|
# 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/.
|
|
|
|
PREF_JS_EXPORTS = $(srcdir)/xulrunner.js
|
|
GARBAGE += $(addprefix $(DIST)/bin/defaults/pref/,xulrunner.js)
|
|
|
|
DEFINES += -DAB_CD=$(AB_CD)
|
|
|
|
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
|
|
TK_LIBS := -framework Cocoa $(TK_LIBS)
|
|
endif
|
|
|
|
LIBS += \
|
|
$(XPCOM_STANDALONE_GLUE_LDOPTS) \
|
|
$(NULL)
|
|
|
|
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)
|
|
OS_LIBS += $(call EXPAND_LIBNAME,comctl32 comdlg32 uuid shell32 ole32 oleaut32 version winspool)
|
|
endif
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
DEFINES += -DXULRUNNER_ICO='"$(DIST)/branding/xulrunner.ico"' -DDOCUMENT_ICO='"$(DIST)/branding/document.ico"'
|
|
|
|
ifdef MOZ_WIDGET_GTK
|
|
libs::
|
|
$(INSTALL) $(IFLAGS1) $(DIST)/branding/default16.png $(DIST)/bin/chrome/icons/default
|
|
$(INSTALL) $(IFLAGS1) $(DIST)/branding/default32.png $(DIST)/bin/chrome/icons/default
|
|
$(INSTALL) $(IFLAGS1) $(DIST)/branding/default48.png $(DIST)/bin/chrome/icons/default
|
|
endif
|
|
|
|
# XXX applications would need to supply this file
|
|
#export:: brand.dtd.in
|
|
# $(call py_action,preprocessor,$(DEFINES) $(ACDEFINES) $^ -o brand.dtd)
|
|
|
|
export::
|
|
$(NSINSTALL) -D $(DIST)/branding
|
|
ifeq ($(OS_ARCH),WINNT)
|
|
cp $(srcdir)/xulrunner.ico $(DIST)/branding/xulrunner.ico
|
|
cp $(srcdir)/xulrunner.ico $(DIST)/branding/app.ico
|
|
cp $(srcdir)/document.ico $(DIST)/branding/document.ico
|
|
endif
|
|
ifdef MOZ_WIDGET_GTK
|
|
cp $(srcdir)/default16.png $(DIST)/branding/default16.png
|
|
cp $(srcdir)/default32.png $(DIST)/branding/default32.png
|
|
cp $(srcdir)/default48.png $(DIST)/branding/default48.png
|
|
endif
|
|
|
|
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
|
|
|
|
FRAMEWORK_NAME = XUL
|
|
FRAMEWORK_VERSION = $(MOZILLA_VERSION)
|
|
|
|
FRAMEWORK_DIR = \
|
|
$(DIST)/$(FRAMEWORK_NAME).framework/Versions/$(FRAMEWORK_VERSION)
|
|
|
|
$(FRAMEWORK_DIR)/Resources:
|
|
$(NSINSTALL) -D $@
|
|
|
|
tools:: $(PROGRAM) $(FRAMEWORK_DIR)/Resources
|
|
$(NSINSTALL) $(srcdir)/macbuild/InfoPlist.strings $(FRAMEWORK_DIR)/Resources
|
|
sed -e 's/APP_VERSION/$(APP_VERSION)/' $(srcdir)/macbuild/Info.plist.in > $(FRAMEWORK_DIR)/Info.plist
|
|
rsync -av $(DIST)/bin/ $(FRAMEWORK_DIR) --exclude mangle --exclude shlibsign
|
|
rm -f $(DIST)/$(FRAMEWORK_NAME).framework/Versions/Current \
|
|
$(DIST)/$(FRAMEWORK_NAME).framework/libxpcom.dylib \
|
|
$(DIST)/$(FRAMEWORK_NAME).framework/XUL \
|
|
$(DIST)/$(FRAMEWORK_NAME).framework/xulrunner
|
|
ln -s $(FRAMEWORK_VERSION) $(DIST)/$(FRAMEWORK_NAME).framework/Versions/Current
|
|
ln -s Versions/Current/libxpcom.dylib $(DIST)/$(FRAMEWORK_NAME).framework/libxpcom.dylib
|
|
ln -s Versions/Current/XUL $(DIST)/$(FRAMEWORK_NAME).framework/XUL
|
|
ln -s Versions/Current/xulrunner $(DIST)/$(FRAMEWORK_NAME).framework/xulrunner
|
|
|
|
clean clobber::
|
|
rm -rf $(DIST)/$(FRAMEWORK_NAME).framework
|
|
endif
|
|
|
|
README_FILE = $(srcdir)/../README.xulrunner
|
|
|
|
libs::
|
|
$(INSTALL) $(IFLAGS1) $(README_FILE) $(DIST)/bin
|
|
$(INSTALL) $(IFLAGS1) $(topsrcdir)/LICENSE $(DIST)/bin
|
|
$(INSTALL) $(IFLAGS1) $(srcdir)/install_app.py $(DIST)/bin
|
|
|