Bug #241003 --> add initial plumbing for the new branding arwork.

Does not effect the seamonkey build.


git-svn-id: svn://10.0.0.236/branches/MOZILLA_1_7_BRANCH@155143 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
scott%scott-macgregor.org
2004-04-19 19:33:55 +00:00
parent c0c126f72c
commit 949d24c020
2 changed files with 47 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
You are not granted rights or licenses to the trademarks of the
Mozilla Foundation or any party, including without limitation the
Thunderbird name or logo.
For more information, see: http://www.mozilla.org/foundation/licensing.html

View File

@@ -0,0 +1,41 @@
# Branding Makefile
# - jars chrome artwork
# - copies artwork to appropriate places in objdir for bundling into app
# resources
DEPTH = ../../..
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
include $(topsrcdir)/config/rules.mk
MAIL_APP_FILES = \
thunderbird.ico \
$(NULL)
MAIL_CONTENT_FILES = \
about-credits.png \
about-thunderbird.png \
$(NULL)
export::
cp $(addprefix $(srcdir)/, $(MAIL_APP_FILES)) $(DEPTH)/mail/app/
if [ ! -d $(DEPTH)/mail/base/content ] ; then \
mkdir $(DEPTH)/mail/base/content; \
fi
cp $(addprefix $(srcdir)/, $(MAIL_CONTENT_FILES)) $(DEPTH)/mail/base/content
if [ ! -d $(DEPTH)/mail/base/locale ] ; then \
mkdir $(DEPTH)/mail/base/locale; \
fi
cp $(addprefix $(srcdir)/, thunderbird-watermark.png) $(DEPTH)/mail/base/locale
if [ ! -d $(DEPTH)/mail/app/macbuild ] ; then \
mkdir $(DEPTH)/mail/app/macbuild; \
fi
cp $(srcdir)/thunderbird.icns $(DEPTH)/mail/app/macbuild/thunderbird.icns
cp $(srcdir)/thunderbird.ico $(DEPTH)/toolkit/mozapps/installer/windows/wizard/setuprsc/mail.ico
cp $(srcdir)/Header.bmp $(DEPTH)/toolkit/mozapps/installer/windows/wizard/setuprsc/Header.bmp
cp $(srcdir)/Watermrk.bmp $(DEPTH)/toolkit/mozapps/installer/windows/wizard/setuprsc/Watermrk.bmp