2005-07-20 20:56:32 +00: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
|
|
|
|
# the mozilla.org SeaMonkey project.
|
|
|
|
# Portions created by the Initial Developer are Copyright (C) 2005
|
|
|
|
# the Initial Developer. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
2006-06-29 11:09:21 +00:00
|
|
|
# Mark Banner <bugzilla@standard8.demon.co.uk>
|
2005-07-20 20:56:32 +00: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
|
|
|
|
|
2006-06-29 11:09:21 +00:00
|
|
|
# Note: mac icons are handled in /suite/app during the final application
|
|
|
|
# packaging
|
|
|
|
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 \
|
|
|
|
bmPropsWindow \
|
|
|
|
bookmark-window \
|
|
|
|
chatzilla-window \
|
|
|
|
downloadManager \
|
|
|
|
editorWindow \
|
|
|
|
findBookmarkWindow \
|
|
|
|
findHistoryWindow \
|
|
|
|
history-window \
|
|
|
|
jsconsoleWindow \
|
|
|
|
main-window \
|
|
|
|
messengerWindow \
|
|
|
|
msgcomposeWindow \
|
|
|
|
venkman-window \
|
|
|
|
winInspectorMain \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
ifeq (windows,$(MOZ_WIDGET_TOOLKIT))
|
|
|
|
# Windows icons
|
|
|
|
DESKTOP_ICONS += \
|
|
|
|
gif-file \
|
|
|
|
html-file \
|
|
|
|
misc-file \
|
|
|
|
image-file \
|
|
|
|
jpeg-file \
|
|
|
|
script-file \
|
|
|
|
xml-file \
|
|
|
|
xul-file \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(ICON_DIR),gtk)
|
|
|
|
libs:: icons/gtk/seamonkey.png
|
|
|
|
$(INSTALL) $^ $(DIST)/bin/chrome/icons/default
|
|
|
|
|
|
|
|
install:: icons/gtk/seamonkey.png
|
|
|
|
$(SYSINSTALL) $(IFLAGS1) $^ $(DESTDIR)$(mozappdir)/chrome/icons/default
|
|
|
|
|
|
|
|
GARBAGE += $(DIST)/bin/chrome/icons/default/seamonkey.png
|
|
|
|
|
|
|
|
DESKTOP_ICONS += default
|
|
|
|
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
|
|
|
|
|
|
|
|
GARBAGE += $(addprefix $(DIST)/bin/chrome/icons/default/,$(DESKTOP_ICON_FILES))
|
2005-07-20 20:56:32 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|