2003-04-06 00:57:25 +04:00
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
#
|
|
|
|
# The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
# 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
# the License. You may obtain a copy of the License at
|
|
|
|
# http://www.mozilla.org/MPL/
|
|
|
|
#
|
|
|
|
# Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
# for the specific language governing rights and limitations under the
|
|
|
|
# License.
|
|
|
|
#
|
|
|
|
# The Original Code is mozilla.org code.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is
|
|
|
|
# Netscape Communications.
|
|
|
|
# Portions created by the Initial Developer are Copyright (C) 2002
|
|
|
|
# the Initial Developer. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
2003-09-29 10:04:02 +04:00
|
|
|
# Brian Ryner <bryner@brianryner.com>
|
2003-04-06 00:57:25 +04:00
|
|
|
#
|
|
|
|
# Alternatively, the contents of this file may be used under the terms of
|
|
|
|
# either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
# in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
# of those above. If you wish to allow use of your version of this file only
|
|
|
|
# under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
# use your version of this file under the terms of the MPL, indicate your
|
|
|
|
# decision by deleting the provisions above and replace them with the notice
|
|
|
|
# and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
# the provisions above, a recipient may use your version of this file under
|
|
|
|
# the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
#
|
|
|
|
# ***** END LICENSE BLOCK *****
|
|
|
|
|
|
|
|
DEPTH = ../..
|
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
2005-04-05 17:09:19 +04:00
|
|
|
MOZILLA_INTERNAL_API = 1
|
|
|
|
|
2005-01-07 04:29:20 +03:00
|
|
|
AB_CD = $(MOZ_UI_LOCALE)
|
|
|
|
|
|
|
|
DEFINES += -DTHUNDERBIRD_ICO=\"$(DIST)/branding/thunderbird.ico\" -DAB_CD=$(AB_CD)
|
2004-04-19 09:24:35 +04:00
|
|
|
|
2003-04-06 00:57:25 +04:00
|
|
|
DIRS = profile
|
|
|
|
|
|
|
|
PREF_JS_EXPORTS = \
|
2004-08-20 00:18:04 +04:00
|
|
|
$(srcdir)/profile/all-thunderbird.js \
|
2005-08-25 04:59:09 +04:00
|
|
|
$(srcdir)/profile/channel-prefs.js \
|
2003-04-06 00:57:25 +04:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
ifeq ($(USE_SHORT_LIBNAME), 1)
|
2003-04-16 05:00:35 +04:00
|
|
|
PROGRAM = thunderbird$(BIN_SUFFIX)
|
2003-04-06 00:57:25 +04:00
|
|
|
else
|
2003-04-16 05:00:35 +04:00
|
|
|
PROGRAM = thunderbird-bin$(BIN_SUFFIX)
|
2003-04-06 00:57:25 +04:00
|
|
|
endif
|
|
|
|
|
|
|
|
REQUIRES = \
|
|
|
|
xpcom \
|
|
|
|
$(NULL)
|
|
|
|
|
2004-11-01 14:52:49 +03:00
|
|
|
LOCAL_INCLUDES = -I$(topsrcdir)/toolkit/xre
|
|
|
|
|
2003-04-06 00:57:25 +04:00
|
|
|
CPPSRCS = nsMailApp.cpp
|
|
|
|
|
2004-06-07 02:40:42 +04:00
|
|
|
ifdef BUILD_STATIC_LIBS
|
|
|
|
STATIC_COMPONENTS_LINKER_PATH = -L$(DIST)/lib/components
|
2003-04-06 00:57:25 +04:00
|
|
|
endif
|
|
|
|
|
2004-06-18 11:14:56 +04:00
|
|
|
ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
|
|
|
|
TK_LIBS := -framework Cocoa $(TK_LIBS)
|
|
|
|
endif
|
|
|
|
|
2003-05-24 12:47:20 +04:00
|
|
|
LIBS = \
|
2004-11-01 14:52:49 +03:00
|
|
|
$(STATIC_COMPONENTS_LINKER_PATH) \
|
2003-05-25 00:27:29 +04:00
|
|
|
$(DIST)/lib/$(LIB_PREFIX)xulapp_s.$(LIB_SUFFIX) \
|
2003-04-06 00:57:25 +04:00
|
|
|
$(MOZ_JS_LIBS) \
|
2004-06-18 11:14:56 +04:00
|
|
|
$(EXTRA_DSO_LIBS) \
|
2004-06-09 22:36:58 +04:00
|
|
|
$(XPCOM_LIBS) \
|
|
|
|
$(NSPR_LIBS) \
|
2005-06-29 23:58:40 +04:00
|
|
|
$(TK_LIBS) \
|
2003-04-06 00:57:25 +04:00
|
|
|
$(NULL)
|
|
|
|
|
2004-04-12 11:25:21 +04:00
|
|
|
# Add explicit X11 dependency when building against X11 toolkits
|
|
|
|
ifneq (,$(filter gtk gtk2 xlib,$(MOZ_WIDGET_TOOLKIT)))
|
|
|
|
LIBS += $(XLDFLAGS) $(XLIBS)
|
|
|
|
endif
|
|
|
|
|
2005-04-07 22:11:59 +04:00
|
|
|
ifdef MOZ_JPROF
|
|
|
|
LIBS += -ljprof
|
|
|
|
endif
|
|
|
|
|
2004-06-07 02:40:42 +04:00
|
|
|
ifndef MOZ_WINCONSOLE
|
|
|
|
ifdef MOZ_DEBUG
|
|
|
|
MOZ_WINCONSOLE = 1
|
|
|
|
else
|
|
|
|
MOZ_WINCONSOLE = 0
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
NSDISTMODE = copy
|
|
|
|
|
2003-04-06 00:57:25 +04:00
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
|
2004-06-07 02:40:42 +04:00
|
|
|
ifndef BUILD_STATIC_LIBS
|
|
|
|
|
2004-05-12 05:18:55 +04:00
|
|
|
ifdef NS_TRACE_MALLOC
|
|
|
|
EXTRA_DSO_LIBS += tracemalloc
|
|
|
|
endif
|
|
|
|
|
2004-06-07 02:40:42 +04:00
|
|
|
else
|
|
|
|
include $(topsrcdir)/config/static-config.mk
|
|
|
|
|
|
|
|
EXTRA_DEPS += \
|
|
|
|
$(STATIC_EXTRA_DEPS) \
|
|
|
|
$(NULL)
|
|
|
|
DEFINES += $(STATIC_DEFINES)
|
|
|
|
CPPSRCS += $(STATIC_CPPSRCS)
|
|
|
|
EXTRA_DSO_LIBS += $(STATIC_EXTRA_DSO_LIBS)
|
|
|
|
REQUIRES += $(STATIC_REQUIRES)
|
|
|
|
EXTRA_LIBS += $(STATIC_EXTRA_LIBS)
|
|
|
|
endif
|
|
|
|
|
2003-04-06 00:57:25 +04:00
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
2003-05-15 05:02:45 +04:00
|
|
|
OS_LIBS += $(call EXPAND_LIBNAME,comctl32 comdlg32 uuid shell32 ole32 oleaut32 version winspool gdi32)
|
2003-04-06 00:57:25 +04:00
|
|
|
RCINCLUDE = splash.rc
|
2003-05-15 05:02:45 +04:00
|
|
|
ifndef GNU_CC
|
2003-04-16 05:00:35 +04:00
|
|
|
RCFLAGS += -DMOZ_THUNDERBIRD -I$(srcdir)
|
2003-05-15 05:02:45 +04:00
|
|
|
else
|
|
|
|
RCFLAGS += -DMOZ_THUNDERBIRD --include-dir $(srcdir)
|
|
|
|
endif
|
2004-06-07 02:40:42 +04:00
|
|
|
ifdef BUILD_STATIC_LIBS
|
|
|
|
RCFLAGS += -DMOZ_STATIC_BUILD
|
|
|
|
endif
|
2003-04-06 00:57:25 +04:00
|
|
|
endif
|
|
|
|
|
2003-11-25 21:25:07 +03:00
|
|
|
ifeq ($(OS_ARCH),OS2)
|
|
|
|
RESFILE=splashos2.res
|
|
|
|
endif
|
|
|
|
|
2003-04-06 00:57:25 +04:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
2004-06-07 02:40:42 +04:00
|
|
|
ifdef BUILD_STATIC_LIBS
|
|
|
|
include $(topsrcdir)/config/static-rules.mk
|
|
|
|
endif
|
|
|
|
|
2004-01-27 05:49:45 +03:00
|
|
|
APP_VERSION = $(shell cat $(srcdir)/../config/version.txt)
|
2005-04-07 22:11:59 +04:00
|
|
|
DEFINES += -DAPP_VERSION="$(APP_VERSION)"
|
2004-01-27 05:49:45 +03:00
|
|
|
|
2004-06-07 02:40:42 +04:00
|
|
|
ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
|
|
|
|
ifdef BUILD_STATIC_LIBS
|
|
|
|
LIBS += -framework QuickTime -framework IOKit
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2003-11-10 01:17:10 +03:00
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
|
|
|
#
|
|
|
|
# Control the default heap size.
|
|
|
|
# This is the heap returned by GetProcessHeap().
|
|
|
|
# As we use the CRT heap, the default size is too large and wastes VM.
|
|
|
|
#
|
|
|
|
# The default heap size is 1MB on Win32.
|
|
|
|
# The heap will grow if need be.
|
|
|
|
#
|
|
|
|
# Set it to 256k. See bug 127069.
|
|
|
|
#
|
|
|
|
ifndef GNU_CC
|
|
|
|
LDFLAGS += /HEAP:0x40000
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2003-04-06 00:57:25 +04:00
|
|
|
$(PROGRAM): $(DIST)/lib/$(LIB_PREFIX)xulapp_s.$(LIB_SUFFIX)
|
|
|
|
|
2003-11-25 09:28:29 +03:00
|
|
|
ifneq (,$(filter windows os2 gtk gtk2,$(MOZ_WIDGET_TOOLKIT)))
|
|
|
|
ifneq (,$(filter windows os2,$(MOZ_WIDGET_TOOLKIT)))
|
|
|
|
ICON_SUFFIX=.ico
|
|
|
|
else
|
|
|
|
ICON_SUFFIX=.xpm
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),gtk2)
|
|
|
|
ICON_DIR=gtk
|
|
|
|
else
|
|
|
|
ICON_DIR=$(MOZ_WIDGET_TOOLKIT)
|
|
|
|
endif
|
|
|
|
|
|
|
|
DESKTOP_ICONS = \
|
|
|
|
abcardWindow \
|
|
|
|
addressbookWindow \
|
|
|
|
messengerWindow \
|
|
|
|
msgcomposeWindow \
|
2003-04-06 00:57:25 +04:00
|
|
|
$(NULL)
|
|
|
|
|
2003-11-25 09:28:29 +03:00
|
|
|
ifeq ($(ICON_DIR),gtk)
|
|
|
|
DESKTOP_ICONS_SMALL=$(patsubst %,%16,$(DESKTOP_ICONS))
|
|
|
|
endif
|
|
|
|
|
|
|
|
DESKTOP_ICON_FILES = $(addsuffix $(ICON_SUFFIX), $(DESKTOP_ICONS) $(DESKTOP_ICONS_SMALL))
|
|
|
|
|
|
|
|
libs:: $(addprefix icons/$(ICON_DIR)/,$(DESKTOP_ICON_FILES))
|
2003-04-06 00:57:25 +04:00
|
|
|
$(INSTALL) $^ $(DIST)/bin/chrome/icons/default
|
|
|
|
|
2003-11-25 09:28:29 +03:00
|
|
|
install:: $(addprefix icons/$(ICON_DIR)/,$(DESKTOP_ICON_FILES))
|
2003-04-06 00:57:25 +04:00
|
|
|
$(SYSINSTALL) $(IFLAGS1) $^ $(DESTDIR)$(mozappdir)/chrome/icons/default
|
2003-11-25 09:28:29 +03:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),gtk2)
|
|
|
|
libs::
|
2004-04-19 09:24:35 +04:00
|
|
|
$(INSTALL) $(DIST)/branding/default.xpm $(DIST)/bin/chrome/icons/default
|
2003-11-25 09:28:29 +03:00
|
|
|
|
|
|
|
install::
|
2004-04-19 09:24:35 +04:00
|
|
|
$(SYSINSTALL) $(IFLAGS1) $(DIST)/branding/default.xpm $(DESTDIR)$(mozappdir)/icons
|
|
|
|
endif
|
|
|
|
|
|
|
|
export::
|
2005-07-25 22:56:27 +04:00
|
|
|
ifndef MOZ_BRANDING_DIRECTORY
|
2004-04-19 09:24:35 +04:00
|
|
|
$(NSINSTALL) -D $(DIST)/branding
|
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
2004-04-19 23:04:41 +04:00
|
|
|
cp $(srcdir)/thunderbird.ico $(DIST)/branding/thunderbird.ico
|
|
|
|
cp $(srcdir)/thunderbird.ico $(DIST)/branding/app.ico
|
2004-04-19 09:24:35 +04:00
|
|
|
endif
|
|
|
|
ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
|
2004-04-19 23:11:09 +04:00
|
|
|
cp $(srcdir)/macbuild/thunderbird.icns $(DIST)/branding/thunderbird.icns
|
2005-08-18 17:11:46 +04:00
|
|
|
cp $(srcdir)/macbuild/dsstore $(DIST)/branding/dsstore
|
|
|
|
cp $(srcdir)/macbuild/background.png $(DIST)/branding/background.png
|
|
|
|
cp $(srcdir)/macbuild/disk.icns $(DIST)/branding/disk.icns
|
|
|
|
cp $(srcdir)/macbuild/license.r $(DIST)/branding/license.r
|
2004-04-19 09:24:35 +04:00
|
|
|
endif
|
|
|
|
ifneq (,$(filter gtk gtk2,$(MOZ_WIDGET_TOOLKIT)))
|
2005-11-18 19:48:30 +03:00
|
|
|
cp $(srcdir)/mozicon128.png $(DIST)/branding/mozicon128.png
|
2004-04-19 09:24:35 +04:00
|
|
|
cp $(srcdir)/mozicon16.xpm $(DIST)/branding/mozicon16.xpm
|
|
|
|
cp $(srcdir)/mozicon50.xpm $(DIST)/branding/mozicon50.xpm
|
|
|
|
endif
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),gtk2)
|
|
|
|
cp $(srcdir)/default.xpm $(DIST)/branding/default.xpm
|
|
|
|
endif
|
2003-11-25 09:28:29 +03:00
|
|
|
endif
|
2003-04-06 00:57:25 +04:00
|
|
|
|
|
|
|
ifneq (,$(filter-out OS2 WINNT Darwin,$(OS_ARCH)))
|
2003-04-16 05:00:35 +04:00
|
|
|
thunderbird:: mozilla.in Makefile.in Makefile $(DEPTH)/config/autoconf.mk
|
2003-04-06 00:57:25 +04:00
|
|
|
cat $< | sed -e "s|%MOZAPPDIR%|$(mozappdir)|" \
|
2004-02-20 21:13:47 +03:00
|
|
|
-e "s|%MOZ_USER_DIR%|.thunderbird|" \
|
2003-04-06 00:57:25 +04:00
|
|
|
-e "s|%MREDIR%|$(mredir)|" \
|
2004-02-20 21:13:47 +03:00
|
|
|
-e "s|%MOZILLA-BIN%|$(PROGRAM)|g" > $@
|
2003-04-06 00:57:25 +04:00
|
|
|
chmod +x $@
|
|
|
|
|
2003-04-16 05:00:35 +04:00
|
|
|
libs:: thunderbird
|
2003-04-06 00:57:25 +04:00
|
|
|
$(INSTALL) $< $(DIST)/bin
|
|
|
|
|
2003-04-16 05:00:35 +04:00
|
|
|
install:: thunderbird
|
2003-04-06 00:57:25 +04:00
|
|
|
$(SYSINSTALL) $< $(DESTDIR)$(bindir)
|
|
|
|
|
2003-04-16 05:00:35 +04:00
|
|
|
GARBAGE += thunderbird
|
2005-08-25 04:59:09 +04:00
|
|
|
GARBAGE += $(addprefix $(DIST)/bin/defaults/pref/, all.js all-thunderbird.js channel-prefs.js mailnews.js)
|
2003-04-06 00:57:25 +04:00
|
|
|
endif
|
|
|
|
|
2003-10-03 01:53:46 +04:00
|
|
|
ifneq (,$(filter gtk gtk2,$(MOZ_WIDGET_TOOLKIT)))
|
|
|
|
ICON_FILES = \
|
2005-11-18 19:48:30 +03:00
|
|
|
$(DIST)/branding/mozicon128.png \
|
2004-04-19 09:24:35 +04:00
|
|
|
$(DIST)/branding/mozicon50.xpm \
|
|
|
|
$(DIST)/branding/mozicon16.xpm \
|
2003-10-03 01:53:46 +04:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
libs::
|
|
|
|
$(INSTALL) $(ICON_FILES) $(DIST)/bin/icons
|
|
|
|
|
|
|
|
install::
|
|
|
|
$(SYSINSTALL) $(IFLAGS1) $(ICON_FILES) $(DESTDIR)$(mozappdir)/icons
|
|
|
|
endif
|
|
|
|
|
2004-02-23 23:11:55 +03:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),photon)
|
|
|
|
LIBS += -lphexlib
|
|
|
|
endif
|
|
|
|
|
2003-04-06 00:57:25 +04:00
|
|
|
ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
|
|
|
|
|
2005-06-17 04:54:25 +04:00
|
|
|
AB := $(firstword $(subst -, ,$(AB_CD)))
|
|
|
|
|
2003-04-06 00:57:25 +04:00
|
|
|
ifdef MOZ_DEBUG
|
2003-04-16 05:00:35 +04:00
|
|
|
APP_NAME = ThunderbirdDebug
|
2003-04-06 00:57:25 +04:00
|
|
|
else
|
2003-04-16 05:00:35 +04:00
|
|
|
APP_NAME = Thunderbird
|
2003-04-06 00:57:25 +04:00
|
|
|
endif
|
|
|
|
|
|
|
|
libs:: $(PROGRAM)
|
|
|
|
mkdir -p $(DIST)/$(APP_NAME).app/Contents/MacOS
|
2005-06-17 04:54:25 +04:00
|
|
|
rsync -a --exclude CVS --exclude "*.in" $(srcdir)/macbuild/Contents $(DIST)/$(APP_NAME).app --exclude English.lproj
|
|
|
|
mkdir -p $(DIST)/$(APP_NAME).app/Contents/Resources/$(AB).lproj
|
|
|
|
rsync -a --exclude CVS $(srcdir)/macbuild/Contents/Resources/English.lproj/ $(DIST)/$(APP_NAME).app/Contents/Resources/$(AB).lproj
|
2004-01-27 05:49:45 +03:00
|
|
|
sed -e "s/APP_VERSION/$(APP_VERSION)/" $(srcdir)/macbuild/Contents/Info.plist.in > $(DIST)/$(APP_NAME).app/Contents/Info.plist
|
|
|
|
rsync -a $(DIST)/bin/ $(DIST)/$(APP_NAME).app/Contents/MacOS
|
|
|
|
rm -f $(DIST)/$(APP_NAME).app/Contents/MacOS/$(PROGRAM)
|
|
|
|
rsync -aL $(PROGRAM) $(DIST)/$(APP_NAME).app/Contents/MacOS
|
2004-11-12 21:51:13 +03:00
|
|
|
mkdir -p $(DIST)/$(APP_NAME).app/Contents/Plug-Ins
|
2005-06-13 23:54:10 +04:00
|
|
|
# Bug 297227: the next line only exists to repair broken depend builds, it can
|
|
|
|
# go away once that bug has been closed for a while.
|
|
|
|
rm -rf $(DIST)/$(APP_NAME).app/Contents/Plug-Ins/PrintPDE.plugin
|
|
|
|
rsync -a --copy-unsafe-links $(DIST)/package/PrintPDE.plugin $(DIST)/$(APP_NAME).app/Contents/Plug-Ins
|
2004-04-19 23:11:09 +04:00
|
|
|
cp -RL $(DIST)/branding/thunderbird.icns $(DIST)/$(APP_NAME).app/Contents/Resources/thunderbird.icns
|
2005-01-22 00:40:31 +03:00
|
|
|
cp -RL $(srcdir)/macbuild/mail-biff-badge.png $(DIST)/$(APP_NAME).app/Contents/Resources/mail-biff-badge.png
|
2003-11-25 06:09:20 +03:00
|
|
|
echo -n APPLMOZM > $(DIST)/$(APP_NAME).app/Contents/PkgInfo
|
2004-01-27 05:49:45 +03:00
|
|
|
# remove CVS dirs from packaged app
|
|
|
|
find $(DIST)/$(APP_NAME).app -type d -name "CVS" -prune -exec rm -rf {} \;
|
2003-04-06 00:57:25 +04:00
|
|
|
|
|
|
|
clean clobber::
|
|
|
|
rm -rf $(DIST)/$(APP_NAME).app
|
|
|
|
endif
|
2004-02-26 06:11:25 +03:00
|
|
|
|
|
|
|
libs::
|
2004-03-12 04:30:06 +03:00
|
|
|
$(INSTALL) $(topsrcdir)/mail/LICENSE.txt $(DIST)/bin
|
2004-07-29 01:51:30 +04:00
|
|
|
|
|
|
|
libs:: $(srcdir)/profile/prefs.js
|
|
|
|
$(INSTALL) $^ $(DIST)/bin/defaults/profile
|
|
|
|
|
|
|
|
install:: $(srcdir)/profile/prefs.js
|
2005-04-23 01:27:25 +04:00
|
|
|
$(SYSINSTALL) $(IFLAGS1) $^ $(DESTDIR)$(mozappdir)/defaults/profile
|