mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 16:46:26 +00:00
50e260671b
Fix problems in regus.jst where we were not registering the US region chrome package. Adjust how we handle the LICENSE file so it ends up as a .txt file when the user installs the app. Register as a default news handler, including all of the news protocols into the windows registry.
233 lines
6.2 KiB
Makefile
233 lines
6.2 KiB
Makefile
# ***** 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):
|
|
# Brian Ryner <bryner@brianryner.com>
|
|
#
|
|
# 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
|
|
|
|
DIRS = profile
|
|
|
|
PREF_JS_EXPORTS = \
|
|
$(srcdir)/profile/thunderbird.js \
|
|
$(NULL)
|
|
|
|
ifeq ($(USE_SHORT_LIBNAME), 1)
|
|
PROGRAM = thunderbird$(BIN_SUFFIX)
|
|
else
|
|
PROGRAM = thunderbird-bin$(BIN_SUFFIX)
|
|
endif
|
|
|
|
REQUIRES = \
|
|
string \
|
|
xpcom \
|
|
xulapp \
|
|
xpinstall \
|
|
appshell \
|
|
$(NULL)
|
|
|
|
CPPSRCS = nsMailApp.cpp
|
|
|
|
# This code removes the console from release builds
|
|
# (unless you've set MOZ_WINCONSOLE=1).
|
|
|
|
ifndef MOZ_WINCONSOLE
|
|
ifdef MOZ_DEBUG
|
|
MOZ_WINCONSOLE = 1
|
|
else
|
|
MOZ_WINCONSOLE = 0
|
|
endif
|
|
endif
|
|
|
|
LIBS = \
|
|
$(DIST)/lib/$(LIB_PREFIX)xulapp_s.$(LIB_SUFFIX) \
|
|
$(MOZ_JS_LIBS) \
|
|
$(MOZ_COMPONENT_LIBS) \
|
|
$(TK_LIBS) \
|
|
$(NULL)
|
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
|
OS_LIBS += $(call EXPAND_LIBNAME,comctl32 comdlg32 uuid shell32 ole32 oleaut32 version winspool gdi32)
|
|
RCINCLUDE = splash.rc
|
|
ifndef GNU_CC
|
|
RCFLAGS += -DMOZ_THUNDERBIRD -I$(srcdir)
|
|
else
|
|
RCFLAGS += -DMOZ_THUNDERBIRD --include-dir $(srcdir)
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(OS_ARCH),OS2)
|
|
RESFILE=splashos2.res
|
|
endif
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
APP_VERSION = $(shell cat $(srcdir)/../config/version.txt)
|
|
DEFINES += -DAPP_VERSION=\"$(APP_VERSION)\"
|
|
|
|
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
|
|
# Get rid of console window
|
|
ifdef GNU_CC
|
|
LDFLAGS += -mwindows
|
|
endif
|
|
endif
|
|
|
|
$(PROGRAM): $(DIST)/lib/$(LIB_PREFIX)xulapp_s.$(LIB_SUFFIX)
|
|
|
|
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 \
|
|
$(NULL)
|
|
|
|
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))
|
|
$(INSTALL) $^ $(DIST)/bin/chrome/icons/default
|
|
|
|
install:: $(addprefix icons/$(ICON_DIR)/,$(DESKTOP_ICON_FILES))
|
|
$(SYSINSTALL) $(IFLAGS1) $^ $(DESTDIR)$(mozappdir)/chrome/icons/default
|
|
endif
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),gtk2)
|
|
libs::
|
|
$(INSTALL) $(srcdir)/default.xpm $(DIST)/bin/chrome/icons
|
|
|
|
install::
|
|
$(SYSINSTALL) $(IFLAGS1) $(srcdir)/default.xpm $(DESTDIR)$(mozappdir)/icons
|
|
endif
|
|
|
|
ifneq (,$(filter-out OS2 WINNT Darwin,$(OS_ARCH)))
|
|
thunderbird:: mozilla.in Makefile.in Makefile $(DEPTH)/config/autoconf.mk
|
|
cat $< | sed -e "s|%MOZAPPDIR%|$(mozappdir)|" \
|
|
-e "s|%MOZ_USER_DIR%|.thunderbird|" \
|
|
-e "s|%MREDIR%|$(mredir)|" \
|
|
-e "s|%MOZILLA-BIN%|$(PROGRAM)|g" > $@
|
|
chmod +x $@
|
|
|
|
libs:: thunderbird
|
|
$(INSTALL) $< $(DIST)/bin
|
|
|
|
install:: thunderbird
|
|
$(SYSINSTALL) $< $(DESTDIR)$(bindir)
|
|
|
|
GARBAGE += thunderbird
|
|
GARBAGE += $(addprefix $(DIST)/bin/defaults/pref/, all.js thunderbird.js mailnews.js)
|
|
endif
|
|
|
|
ifneq (,$(filter gtk gtk2,$(MOZ_WIDGET_TOOLKIT)))
|
|
ICON_FILES = \
|
|
$(srcdir)/mozicon50.xpm \
|
|
$(srcdir)/mozicon16.xpm \
|
|
$(NULL)
|
|
|
|
libs::
|
|
$(INSTALL) $(ICON_FILES) $(DIST)/bin/icons
|
|
|
|
install::
|
|
$(SYSINSTALL) $(IFLAGS1) $(ICON_FILES) $(DESTDIR)$(mozappdir)/icons
|
|
endif
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),photon)
|
|
LIBS += -lphexlib
|
|
endif
|
|
|
|
ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
|
|
|
|
ifdef MOZ_DEBUG
|
|
APP_NAME = ThunderbirdDebug
|
|
else
|
|
APP_NAME = Thunderbird
|
|
endif
|
|
|
|
libs:: $(PROGRAM)
|
|
mkdir -p $(DIST)/$(APP_NAME).app/Contents/MacOS
|
|
rsync -a --exclude CVS --exclude "*.in" $(srcdir)/macbuild/Contents $(DIST)/$(APP_NAME).app
|
|
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
|
|
cp -RL $(srcdir)/macbuild/mach.icns $(DIST)/$(APP_NAME).app/Contents/Resources/mach.icns
|
|
echo -n APPLMOZM > $(DIST)/$(APP_NAME).app/Contents/PkgInfo
|
|
# remove CVS dirs from packaged app
|
|
find $(DIST)/$(APP_NAME).app -type d -name "CVS" -prune -exec rm -rf {} \;
|
|
|
|
clean clobber::
|
|
rm -rf $(DIST)/$(APP_NAME).app
|
|
endif
|
|
|
|
README_FILE = $(topsrcdir)/README.txt
|
|
|
|
libs::
|
|
$(INSTALL) $(README_FILE) $(DIST)/bin
|
|
$(INSTALL) $(topsrcdir)/mail/LICENSE.txt $(DIST)/bin
|