Chrome jar reorg for unix.
git-svn-id: svn://10.0.0.236/branches/jar_restructuring_branch@79512 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -51,6 +51,8 @@ BUILD_TOOLS = $(topsrcdir)/build/unix
|
||||
CONFIG_TOOLS = $(DEPTH)/config
|
||||
AUTOCONF_TOOLS = $(topsrcdir)/build/autoconf
|
||||
|
||||
PERL = perl
|
||||
|
||||
#
|
||||
# Tweak the default OS_ARCH and OS_RELEASE macros as needed.
|
||||
#
|
||||
|
||||
@@ -200,14 +200,14 @@ sub EnsureFileInDir
|
||||
return 0;
|
||||
}
|
||||
|
||||
while (<>) {
|
||||
while (<STDIN>) {
|
||||
chomp;
|
||||
start:
|
||||
if (/^([\w\d.\-\\\/]+)\:\s*$/) {
|
||||
my $jarfile = $1;
|
||||
my $args = "";
|
||||
my $overrides = "";
|
||||
while (<>) {
|
||||
while (<STDIN>) {
|
||||
if (/^\s+([\w\d.\-\\\/]+)\s*(\([\w\d.\-\\\/]+\))?$\s*/) {
|
||||
my $dest = $1;
|
||||
my $srcPath = $2;
|
||||
|
||||
@@ -598,7 +598,6 @@ chrome::
|
||||
$(PERL) $(DEPTH)\config\make-jars.pl -c -d $(DIST)\bin\chrome < $(JAR_MANIFEST)
|
||||
!endif
|
||||
|
||||
# add to chrome:: rule:
|
||||
REGCHROME = @perl $(DEPTH)\config\add-chrome.pl $(DIST)\bin\chrome\installed-chrome.txt
|
||||
|
||||
regchrome:
|
||||
|
||||
@@ -1126,102 +1126,17 @@ GARBAGE_DIRS += $(XPIDL_GEN_DIR)
|
||||
endif
|
||||
|
||||
################################################################################
|
||||
# Generate chrome building rules.
|
||||
#
|
||||
# You need to set these in your makefile.win to utilize this support:
|
||||
# CHROME_DIR - specifies the chrome subdirectory where your chrome files
|
||||
# go; e.g., CHROME_DIR=navigator or CHROME_DIR=global
|
||||
#
|
||||
# Note: All file listed in the next three macros MUST be prefaced with .\ (or ./)!
|
||||
#
|
||||
# CHROME_CONTENT - list of chrome content files; these can be prefaced with
|
||||
# arbitrary paths; e.g., CHROME_CONTENT=./content/default/foobar.xul
|
||||
# CHROME_SKIN - list of skin files
|
||||
# CHROME_L10N - list of localization files, e.g., CHROME_L10N=./locale/en-US/foobar.dtd
|
||||
#
|
||||
# These macros are optional, if not specified, each defaults to ".".
|
||||
# CHROME_CONTENT_DIR - specifies a subdirectory within CHROME_DIR where
|
||||
# all CHROME_CONTENT files will be installed.
|
||||
# CHROME_SKIN_DIR - Like above, but for skin files
|
||||
# CHROME_L10N_DIR - Like above, but for localization files
|
||||
# CHROME_TYPE - The type of chrome being generated (content, skin, locale).
|
||||
# Top-level makefiles (the same one copying the rdf manifests
|
||||
# and generating the jar file) should define this macro.
|
||||
# This will notify the chrome registry of a new installation.
|
||||
ifneq ($(MOZ_ENABLE_JAR_PACKAGING),)
|
||||
# CHROME PACKAGING
|
||||
|
||||
JAR_MANIFEST := $(srcdir)/jar.mn
|
||||
install::
|
||||
@if test -f $(JAR_MANIFEST); then $(PERL) $(topsrcdir)/config/make-jars-unix.pl -d $(DIST)/bin/chrome -s $(srcdir) < $(JAR_MANIFEST); fi
|
||||
JAR_MANIFEST := jar.mn
|
||||
|
||||
ifneq ($(CHROME_TYPE),)
|
||||
install:: $(addprefix bogus/, $(CHROME_TYPE))
|
||||
chrome::
|
||||
@if test -f $(JAR_MANIFEST); then $(PERL) $(topsrcdir)/config/make-jars.pl -c -d $(DIST)/bin/chrome < $(JAR_MANIFEST); fi
|
||||
|
||||
$(addprefix bogus/, $(CHROME_TYPE)):
|
||||
@echo $(patsubst bogus/%, %, $@),install,url,jar:resource:/chrome/$(CHROME_DIR).jar!/ >>$(DEPTH)/dist/bin/chrome/installed-chrome.txt
|
||||
endif #CHROME_TYPE
|
||||
install:: chrome
|
||||
|
||||
# keeping this in so that bad install rules will work.
|
||||
ifneq ($(CHROME_DIR),)
|
||||
CHROME_DIST := $(DIST)/bin/chrome/$(CHROME_DIR)
|
||||
endif
|
||||
REGCHROME = $(PERL) $(DEPTH)/config/add-chrome.pl $(DIST)/bin/chrome/installed-chrome.txt
|
||||
|
||||
else # MOZ_DISBALE_JAR_PACKAGING
|
||||
|
||||
ifneq ($(CHROME_DIR),)
|
||||
CHROME_DIST := $(DIST)/bin/chrome/$(CHROME_DIR)
|
||||
|
||||
# Content
|
||||
ifneq ($(CHROME_CONTENT),)
|
||||
ifeq ($(CHROME_CONTENT_DIR),) # Use CHROME_DIR unless specified otherwise.
|
||||
CHROME_CONTENT_DIR := .
|
||||
endif
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(CHROME_CONTENT)) $(CHROME_DIST)/$(CHROME_CONTENT_DIR)
|
||||
endif
|
||||
# content
|
||||
|
||||
# Skin
|
||||
ifneq ($(CHROME_SKIN),)
|
||||
ifeq ($(CHROME_SKIN_DIR),) # Use CHROME_DIR unless specified otherwise.
|
||||
CHROME_SKIN_DIR := .
|
||||
endif
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(CHROME_SKIN)) $(CHROME_DIST)/$(CHROME_SKIN_DIR)
|
||||
endif
|
||||
# skin
|
||||
|
||||
# Localization.
|
||||
ifneq ($(CHROME_L10N),)
|
||||
ifeq ($(CHROME_L10N_DIR),) # Use CHROME_DIR unless specified otherwise.
|
||||
CHROME_L10N_DIR := .
|
||||
endif
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(CHROME_L10N)) $(CHROME_DIST)/$(CHROME_L10N_DIR)
|
||||
endif
|
||||
# localization
|
||||
|
||||
# misc
|
||||
ifneq ($(CHROME_MISC),)
|
||||
ifeq ($(CHROME_MISC_DIR),) # Use CHROME_DIR unless specified otherwise.
|
||||
CHROME_MISC_DIR := .
|
||||
endif
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(CHROME_MISC)) $(CHROME_DIST)/$(CHROME_MISC_DIR)
|
||||
endif
|
||||
# misc
|
||||
|
||||
ifneq ($(CHROME_TYPE),)
|
||||
install:: $(addprefix bogus/, $(CHROME_TYPE))
|
||||
|
||||
$(addprefix bogus/, $(CHROME_TYPE)):
|
||||
@echo $(patsubst bogus/%, %, $@),install,url,resource:/chrome/$(CHROME_DIR)/ >>$(DEPTH)/dist/bin/chrome/installed-chrome.txt
|
||||
endif
|
||||
|
||||
endif #chrome
|
||||
|
||||
endif # MOZ_DISABLE_JAR_PACKAGING
|
||||
# chrome
|
||||
##############################################################################
|
||||
|
||||
ifndef NO_MDUPDATE
|
||||
|
||||
@@ -57,6 +57,3 @@ override NO_SHARED_LIB=1
|
||||
override NO_STATIC_LIB=
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(srcdir)/appstrings.properties $(DIST)/bin/chrome/locales/en-US/global/locale
|
||||
|
||||
@@ -30,3 +30,6 @@ DIRS = public idl base ui txmgr txtsvc
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
chrome::
|
||||
@$(REGCHROME) content editor comm.jar; \
|
||||
$(REGCHROME) locale en-US/editor en-US.jar
|
||||
|
||||
@@ -39,3 +39,8 @@ CHROME_MISC = \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
chrome::
|
||||
@$(REGCHROME) content browser embed.jar; \
|
||||
$(REGCHROME) skin modern/browser embed.jar; \
|
||||
$(REGCHROME) locale en-US/browser embed.jar
|
||||
|
||||
@@ -25,23 +25,4 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
CHROME_DIR = packages/embedding
|
||||
CHROME_CONTENT_DIR = browser/content
|
||||
|
||||
CHROME_CONTENT = \
|
||||
$(NULL)
|
||||
|
||||
SKINFILES = \
|
||||
$(srcdir)/simple-shell.css \
|
||||
$(srcdir)/embedding.css \
|
||||
$(srcdir)/back.gif \
|
||||
$(srcdir)/forward.gif \
|
||||
$(srcdir)/reload.gif \
|
||||
$(srcdir)/stop.gif
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
INSTALLROOT = $(DIST)/bin/chrome/packages/embedding/browser
|
||||
|
||||
install::
|
||||
$(INSTALL) $(SKINFILES) $(INSTALLROOT)/skin
|
||||
@@ -30,7 +30,5 @@ include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
DIRS = resources
|
||||
|
||||
INSTALLROOT = $(DIST)/bin/chrome/packages/cview/cview
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
|
||||
@@ -30,15 +30,4 @@ include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
DIRS = content locale skin
|
||||
|
||||
CHROME_DIR = packages/cview
|
||||
CHROME_MISC_DIR = .
|
||||
|
||||
# this is the magic variable that causes the various parts of the
|
||||
# chrome registration information to get created.
|
||||
CHROME_TYPE = content locale skin
|
||||
|
||||
CHROME_MISC = \
|
||||
manifest.rdf \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
@@ -36,97 +36,7 @@ include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
DIRS = xul
|
||||
|
||||
JSLIBFILES = \
|
||||
$(srcdir)/js/lib/utils.js \
|
||||
$(srcdir)/js/lib/events.js \
|
||||
$(srcdir)/js/lib/connection-xpcom.js \
|
||||
$(srcdir)/js/lib/command-manager.js \
|
||||
$(srcdir)/js/lib/irc.js \
|
||||
$(srcdir)/js/lib/irc-debug.js \
|
||||
$(NULL)
|
||||
|
||||
XULLIBFILES = \
|
||||
$(srcdir)/xul/lib/listbox.js \
|
||||
$(srcdir)/xul/lib/munger.js \
|
||||
$(NULL)
|
||||
|
||||
CONTENTFILES = \
|
||||
$(srcdir)/xul/content/chatzilla.xul \
|
||||
$(srcdir)/xul/content/commands.js \
|
||||
$(srcdir)/xul/content/handlers.js \
|
||||
$(srcdir)/xul/content/readprefs.js \
|
||||
$(srcdir)/xul/content/static.js \
|
||||
$(srcdir)/xul/content/rdf.js \
|
||||
$(NULL)
|
||||
|
||||
SKINFILES = \
|
||||
$(srcdir)/xul/skin/chatzilla.css \
|
||||
$(srcdir)/xul/skin/output-default.css \
|
||||
$(srcdir)/xul/skin/output-loud.css \
|
||||
$(srcdir)/xul/skin/output-marble.css \
|
||||
$(NULL)
|
||||
|
||||
IMAGEFILES = \
|
||||
$(srcdir)/xul/skin/images/xtal.jpg \
|
||||
$(srcdir)/xul/skin/images/blue_rock.gif \
|
||||
$(srcdir)/xul/skin/images/face-frown.gif \
|
||||
$(srcdir)/xul/skin/images/face-tongue.gif \
|
||||
$(srcdir)/xul/skin/images/face-angry.gif \
|
||||
$(srcdir)/xul/skin/images/face-screw.gif \
|
||||
$(srcdir)/xul/skin/images/face-wink.gif \
|
||||
$(srcdir)/xul/skin/images/face-cry.gif \
|
||||
$(srcdir)/xul/skin/images/face-smile.gif \
|
||||
$(srcdir)/xul/skin/images/face-dunno.gif \
|
||||
$(srcdir)/xul/skin/images/face-surprise.gif \
|
||||
$(srcdir)/xul/skin/images/is-op.gif \
|
||||
$(srcdir)/xul/skin/images/isnt-op.gif \
|
||||
$(srcdir)/xul/skin/images/is-voice.gif \
|
||||
$(srcdir)/xul/skin/images/isnt-voice.gif \
|
||||
$(srcdir)/xul/skin/images/view-activity.gif \
|
||||
$(srcdir)/xul/skin/images/view-attention.gif \
|
||||
$(srcdir)/xul/skin/images/view-current.gif \
|
||||
$(srcdir)/xul/skin/images/view-normal.gif \
|
||||
$(NULL)
|
||||
|
||||
TESTFILES = \
|
||||
$(srcdir)/xul/tests/test3.xul \
|
||||
$(srcdir)/xul/tests/test3.css \
|
||||
$(srcdir)/xul/tests/test3-output-default.css \
|
||||
$(srcdir)/xul/tests/test3-output-marble.css \
|
||||
$(srcdir)/xul/tests/test3-output-loud.css \
|
||||
$(srcdir)/xul/tests/test3-static.js \
|
||||
$(srcdir)/xul/tests/test3-handlers.js \
|
||||
$(srcdir)/xul/tests/test3-commands.js \
|
||||
$(srcdir)/xul/tests/test3-readprefs.js \
|
||||
$(srcdir)/xul/tests/g_green.gif \
|
||||
$(srcdir)/xul/tests/g_green_on.gif \
|
||||
$(srcdir)/xul/tests/g_grey.gif \
|
||||
$(srcdir)/xul/tests/g_grey_on.gif \
|
||||
$(srcdir)/xul/tests/green-on.gif \
|
||||
$(srcdir)/xul/tests/green-off.gif \
|
||||
$(srcdir)/xul/tests/green-blink-1.gif \
|
||||
$(srcdir)/xul/tests/yellow-on.gif \
|
||||
$(srcdir)/xul/tests/xtal.jpg \
|
||||
$(srcdir)/xul/tests/blue_rock.gif \
|
||||
$(srcdir)/xul/tests/face-angry.gif \
|
||||
$(srcdir)/xul/tests/face-cry.gif \
|
||||
$(srcdir)/xul/tests/face-frown.gif \
|
||||
$(srcdir)/xul/tests/face-smile.gif \
|
||||
$(srcdir)/xul/tests/face-surprise.gif \
|
||||
$(srcdir)/xul/tests/face-tongue.gif \
|
||||
$(srcdir)/xul/tests/face-wink.gif \
|
||||
$(srcdir)/xul/tests/face-screw.gif \
|
||||
$(srcdir)/xul/tests/face-dunno.gif \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
INSTALLROOT = $(DIST)/bin/chrome/packages/chatzilla/chatzilla
|
||||
|
||||
install::
|
||||
$(INSTALL) $(JSLIBFILES) $(INSTALLROOT)/content/lib/js
|
||||
$(INSTALL) $(XULLIBFILES) $(INSTALLROOT)/content/lib/xul
|
||||
$(INSTALL) $(CONTENTFILES) $(INSTALLROOT)/content
|
||||
$(INSTALL) $(SKINFILES) $(INSTALLROOT)/skin
|
||||
$(INSTALL) $(IMAGEFILES) $(INSTALLROOT)/skin/images
|
||||
$(INSTALL) $(srcdir)/js/lib/chatzilla-service.js $(DIST)/bin/components
|
||||
$(INSTALL) ./js/lib/chatzilla-service.js $(DIST)/bin/components
|
||||
|
||||
@@ -38,3 +38,8 @@ CHROME_MISC = \
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
chrome::
|
||||
@$(REGCHROME) content chatzilla chatzilla.jar; \
|
||||
$(REGCHROME) skin modern/chatzilla chatzilla.jar; \
|
||||
$(REGCHROME) locale en-US/chatzilla chatzilla.jar; \
|
||||
$(REGCHROME) content communicator comm.jar
|
||||
|
||||
@@ -25,20 +25,4 @@ srcdir = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
CHROME_DIR=packages/chatzilla
|
||||
CHROME_CONTENT_DIR=chatzilla/content
|
||||
|
||||
CHROME_CONTENT = \
|
||||
chatzillaOverlay.xul \
|
||||
chatzillaOverlay.js \
|
||||
$(NULL)
|
||||
|
||||
EXPORT_PREF_CONTENT = \
|
||||
$(srcdir)/pref-irc.xul \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(EXPORT_PREF_CONTENT) $(DIST)/bin/chrome/packages/core/communicator/content/pref
|
||||
|
||||
@@ -25,19 +25,4 @@ srcdir = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
CHROME_DIR=packages/chatzilla
|
||||
CHROME_L10N_DIR=chatzilla/locale
|
||||
|
||||
CHROME_L10N = \
|
||||
chatzillaOverlay.dtd \
|
||||
$(NULL)
|
||||
|
||||
EXPORT_PREF_CONTENT = \
|
||||
$(srcdir)/pref-irc.dtd \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(EXPORT_PREF_CONTENT) $(DIST)/bin/chrome/locales/en-US/communicator/locale/pref
|
||||
|
||||
@@ -40,8 +40,3 @@ override NO_SHARED_LIB=1
|
||||
override NO_STATIC_LIB=
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install:: $(TARGETS)
|
||||
$(INSTALL) $(srcdir)/CookieViewer.xul $(srcdir)/CookieViewer.js $(DIST)/bin/chrome/packages/core/communicator/content/wallet
|
||||
$(INSTALL) $(srcdir)/CookieViewer.properties $(srcdir)/CookieViewer.dtd $(DIST)/bin/chrome/locales/en-US/communicator/locale/wallet
|
||||
|
||||
|
||||
@@ -25,14 +25,5 @@ srcdir = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
EXPORT_RESOURCE_CONTENT = \
|
||||
$(srcdir)/CookieViewer.xul \
|
||||
$(srcdir)/CookieViewer.js \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(EXPORT_RESOURCE_CONTENT) $(DIST)/bin/chrome/packages/core/communicator/content/wallet
|
||||
|
||||
|
||||
@@ -25,14 +25,6 @@ srcdir = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
EXPORT_RESOURCE_CONTENT = \
|
||||
$(srcdir)/CookieViewer.dtd \
|
||||
$(srcdir)/CookieViewer.properties \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(EXPORT_RESOURCE_CONTENT) $(DIST)/bin/chrome/locales/en-US/communicator/locale/wallet
|
||||
|
||||
|
||||
@@ -40,12 +40,3 @@ override NO_SHARED_LIB=1
|
||||
override NO_STATIC_LIB=
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install:: $(TARGETS)
|
||||
$(INSTALL) $(srcdir)/WalletEditor.xul $(srcdir)/WalletEditor.js $(srcdir)/privacy.xul $(DIST)/bin/chrome/packages/core/communicator/content/wallet
|
||||
$(INSTALL) $(srcdir)/interview.html $(srcdir)/index.html $(srcdir)/privacy.html $(DIST)/bin/chrome/locales/en-US/communicator/locale/wallet
|
||||
$(INSTALL) $(srcdir)/sample1.html $(srcdir)/sample2.html $(srcdir)/sample3.html $(DIST)/bin/chrome/locales/en-US/communicator/locale/wallet
|
||||
$(INSTALL) $(srcdir)/sample4.html $(srcdir)/sample5.html $(srcdir)/sample6.html $(DIST)/bin/chrome/locales/en-US/communicator/locale/wallet
|
||||
$(INSTALL) $(srcdir)/sample7.html $(srcdir)/sample8.html $(srcdir)/sample9.html $(DIST)/bin/chrome/locales/en-US/communicator/locale/wallet
|
||||
$(INSTALL) $(srcdir)/sample10.html $(DIST)/bin/chrome/locales/en-US/communicator/locale/wallet
|
||||
$(INSTALL) $(srcdir)/WalletEditor.properties $(srcdir)/WalletEditor.dtd $(srcdir)/privacy.dtd $(DIST)/bin/chrome/locales/en-US/communicator/locale/wallet
|
||||
|
||||
@@ -25,14 +25,5 @@ srcdir = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
EXPORT_RESOURCE_CONTENT = \
|
||||
$(srcdir)/WalletEditor.xul \
|
||||
$(srcdir)/WalletEditor.js \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(EXPORT_RESOURCE_CONTENT) $(DIST)/bin/chrome/packages/core/communicator/content/wallet
|
||||
|
||||
|
||||
@@ -25,14 +25,5 @@ srcdir = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
EXPORT_RESOURCE_CONTENT = \
|
||||
$(srcdir)/WalletEditor.dtd \
|
||||
$(srcdir)/WalletEditor.properties \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(EXPORT_RESOURCE_CONTENT) $(DIST)/bin/chrome/locales/en-US/communicator/locale/wallet
|
||||
|
||||
|
||||
@@ -41,7 +41,3 @@ override NO_STATIC_LIB=
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install:: $(TARGETS)
|
||||
$(INSTALL) $(srcdir)/SignonViewer.xul $(srcdir)/SignonViewer.js $(DIST)/bin/chrome/packages/core/communicator/content/wallet
|
||||
$(INSTALL) $(srcdir)/SignonViewer.properties $(srcdir)/SignonViewer.dtd $(DIST)/bin/chrome/locales/en-US/communicator/locale/wallet
|
||||
|
||||
|
||||
@@ -28,6 +28,3 @@ include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install:: $(TARGETS)
|
||||
$(INSTALL) $(srcdir)/SignonViewer.xul $(srcdir)/SignonViewer.js $(DIST)/bin/chrome/packages/core/communicator/content/wallet
|
||||
|
||||
|
||||
@@ -28,7 +28,4 @@ include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install:: $(TARGETS)
|
||||
$(INSTALL) SignonViewer.properties SignonViewer.dtd $(DIST)/bin/chrome/locales/en-US/communicator/locale/wallet
|
||||
|
||||
|
||||
|
||||
@@ -46,11 +46,6 @@ DEFAULTS_FILES = \
|
||||
$(srcdir)/SchemaConcat.tbl \
|
||||
$(NULL)
|
||||
|
||||
CHROME_FILES = \
|
||||
$(srcdir)/cookie.properties \
|
||||
$(srcdir)/wallet.properties \
|
||||
$(NULL)
|
||||
|
||||
EXTRA_DSO_LDOPTS = \
|
||||
-L$(DIST)/bin \
|
||||
$(NSPR_LIBS) \
|
||||
@@ -61,5 +56,4 @@ include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(DEFAULTS_FILES) $(DIST)/bin/defaults/wallet
|
||||
$(INSTALL) $(CHROME_FILES) $(DIST)/bin/chrome/locales/en-US/communicator/locale/wallet
|
||||
|
||||
|
||||
@@ -26,13 +26,6 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
EXPORT_RESOURCE_CONTENT = \
|
||||
$(srcdir)/cookie.properties \
|
||||
$(srcdir)/wallet.properties \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(EXPORT_RESOURCE_CONTENT) $(DIST)/bin/chrome/locales/en-US/communicator/locale/wallet
|
||||
|
||||
|
||||
@@ -41,7 +41,3 @@ override NO_STATIC_LIB=
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install:: $(TARGETS)
|
||||
$(INSTALL) $(srcdir)/WalletPreview.xul $(srcdir)/WalletPreview.js $(DIST)/bin/chrome/packages/core/communicator/content/wallet
|
||||
$(INSTALL) $(srcdir)/WalletPreview.properties $(DIST)/bin/chrome/locales/en-US/communicator/locale/wallet
|
||||
|
||||
|
||||
@@ -27,7 +27,3 @@ VPATH = @srcdir@
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install:: $(TARGETS)
|
||||
$(INSTALL) $(srcdir)/WalletPreview.xul $(srcdir)/WalletPreview.js $(DIST)/bin/chrome/packages/core/communicator/content/wallet
|
||||
|
||||
|
||||
@@ -28,6 +28,3 @@ include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install:: $(TARGETS)
|
||||
$(INSTALL) $(srcdir)/WalletPreview.properties $(DIST)/bin/chrome/locales/en-US/communicator/locale/wallet
|
||||
|
||||
|
||||
@@ -54,11 +54,7 @@ CPPSRCS = \
|
||||
EXPORT_RESOURCE = \
|
||||
$(srcdir)/charsetalias.properties \
|
||||
$(srcdir)/charsetData.properties \
|
||||
$(srcdir)/acceptlanguage.properties \
|
||||
$(NULL)
|
||||
|
||||
EXPORT_LOCALE = \
|
||||
$(srcdir)/charsetTitles.properties \
|
||||
$(srcdir)/acceptlanguage.properties \
|
||||
$(NULL)
|
||||
|
||||
ifeq ($(MOZ_WIDGET_TOOLKIT),os2)
|
||||
@@ -95,4 +91,3 @@ endif
|
||||
|
||||
install::
|
||||
$(INSTALL) $(EXPORT_RESOURCE) $(DIST)/bin/res
|
||||
$(INSTALL) $(EXPORT_LOCALE) $(DIST)/bin/chrome/locales/en-US/global/locale
|
||||
|
||||
@@ -30,3 +30,6 @@ DIRS = idl public base db news local mime compose imap addrbook import absync
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
chrome::
|
||||
@$(REGCHROME) content messenger messenger.jar; \
|
||||
$(REGCHROME) locale en-US/messenger en-US.jar
|
||||
|
||||
@@ -26,12 +26,6 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
EXPORT_RESOURCE_CONTENT = \
|
||||
$(srcdir)/absync.properties \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(EXPORT_RESOURCE_CONTENT) $(DIST)/bin/chrome/locales/en-US/messenger/locale/addressbook
|
||||
|
||||
|
||||
@@ -26,17 +26,4 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/packages/messenger/messenger/content/addressbook
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
pref-addressing.xul \
|
||||
pref-addressbookOverlay.xul \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
|
||||
|
||||
@@ -28,6 +28,3 @@ include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(srcdir)/pref-addressing.dtd $(DIST)/bin/chrome/locales/en-US/messenger/locale/addressbook
|
||||
|
||||
|
||||
@@ -26,35 +26,4 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/packages/messenger/messenger/content/addressbook
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
abAddressBookNameDialog.js \
|
||||
abAddressBookNameDialog.xul \
|
||||
abCardOverlay.js \
|
||||
abCardOverlay.xul \
|
||||
abCardViewOverlay.js \
|
||||
abCardViewOverlay.xul \
|
||||
abCommon.js \
|
||||
abDirTreeOverlay.xul \
|
||||
abEditCardDialog.xul \
|
||||
abNewCardDialog.xul \
|
||||
abResultsTreeOverlay.xul \
|
||||
abSelectAddressesDialog.js \
|
||||
abSelectAddressesDialog.xul \
|
||||
addressbook.js \
|
||||
addressbook.xul \
|
||||
abDragDrop.js \
|
||||
abMailListDialog.js \
|
||||
abMailListDialog.xul \
|
||||
abListOverlay.xul \
|
||||
abEditListDialog.xul \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
|
||||
|
||||
@@ -26,21 +26,5 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
EXPORT_RESOURCE_CONTENT = \
|
||||
$(srcdir)/abAddressBookNameDialog.dtd \
|
||||
$(srcdir)/abCardOverlay.dtd \
|
||||
$(srcdir)/abCardViewOverlay.dtd \
|
||||
$(srcdir)/abDirTreeOverlay.dtd \
|
||||
$(srcdir)/abMainWindow.dtd \
|
||||
$(srcdir)/abNewCardDialog.dtd \
|
||||
$(srcdir)/abResultsTreeOverlay.dtd \
|
||||
$(srcdir)/abSelectAddressesDialog.dtd \
|
||||
$(srcdir)/abMailListDialog.dtd \
|
||||
$(srcdir)/addressBook.properties \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(EXPORT_RESOURCE_CONTENT) $(DIST)/bin/chrome/locales/en-US/messenger/locale/addressbook
|
||||
|
||||
|
||||
@@ -26,17 +26,4 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
EXPORT_DIR = $(DIST)/bin/chrome/locales/en-US/messenger/locale/isp
|
||||
|
||||
EXPORT_RESOURCE_FILES = \
|
||||
aol.rdf \
|
||||
example.rdf \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(EXPORT_DIR)/, $(EXPORT_RESOURCE_FILES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_FILES)) $(EXPORT_DIR)
|
||||
|
||||
|
||||
@@ -26,12 +26,6 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
EXPORT_RESOURCE_CONTENT = \
|
||||
$(srcdir)/platformMailnewsOverlay.xul \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(EXPORT_RESOURCE_CONTENT) $(DIST)/bin/chrome/packages/messenger/messenger/content
|
||||
|
||||
|
||||
@@ -28,6 +28,3 @@ include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(srcdir)/imapMsgs.properties $(DIST)/bin/chrome/locales/en-US/messenger/locale
|
||||
|
||||
|
||||
@@ -28,6 +28,4 @@ include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(srcdir)/localMsgs.properties $(DIST)/bin/chrome/locales/en-US/messenger/locale
|
||||
|
||||
|
||||
@@ -28,6 +28,3 @@ include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(srcdir)/abookstat.gif $(DIST)/bin/chrome/skins/modern/messenger/skin
|
||||
|
||||
|
||||
@@ -28,6 +28,3 @@ include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(srcdir)/vcard.properties $(DIST)/bin/chrome/locales/en-US/messenger/locale
|
||||
|
||||
|
||||
@@ -29,8 +29,3 @@ include $(DEPTH)/config/autoconf.mk
|
||||
DIRS = content
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(srcdir)/mime.properties $(DIST)/bin/chrome/locales/en-US/messenger/locale
|
||||
$(INSTALL) $(srcdir)/mimeheader.properties $(DIST)/bin/chrome/locales/en-US/messenger/locale
|
||||
|
||||
|
||||
@@ -1119,7 +1119,7 @@ nsZipReaderCache::nsZipReaderCache()
|
||||
NS_IMETHODIMP
|
||||
nsZipReaderCache::Init(PRUint32 cacheSize)
|
||||
{
|
||||
#ifdef DEBUG_warren
|
||||
#ifdef xDEBUG_warren
|
||||
mCacheSize = 1;//cacheSize; // XXX hack
|
||||
#else
|
||||
mCacheSize = cacheSize;
|
||||
|
||||
@@ -30,3 +30,6 @@ DIRS = content locale
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
chrome::
|
||||
@$(REGCHROME) locale en-US/necko en-US.jar
|
||||
|
||||
|
||||
@@ -26,16 +26,4 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
CHROME_DIR = $(DIST)/bin/chrome/packages/core/necko/content
|
||||
|
||||
EXPORT_RESOURCES = \
|
||||
redirect_loop.xul \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(CHROME_DIR)/, $(EXPORT_RESOURCES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCES)) $(CHROME_DIR)
|
||||
|
||||
|
||||
@@ -26,13 +26,6 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
EXPORT_RESOURCE_CONTENT = \
|
||||
$(srcdir)/necko.properties \
|
||||
$(srcdir)/redirect_loop.dtd \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(EXPORT_RESOURCE_CONTENT) $(DIST)/bin/chrome/locales/en-US/necko/locale
|
||||
|
||||
|
||||
@@ -27,14 +27,5 @@ VPATH = @srcdir@
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
|
||||
FILES = \
|
||||
profileMigrationProgress.js \
|
||||
profileMigrationProgress.xul \
|
||||
no_space.xul \
|
||||
no_space.js \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(FILES)) $(DIST)/bin/chrome/packages/core/communicator/content/profile
|
||||
|
||||
@@ -27,12 +27,4 @@ VPATH = @srcdir@
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
|
||||
FILES = \
|
||||
profileMigrationProgress.dtd \
|
||||
no_space.dtd \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(FILES)) $(DIST)/bin/chrome/locales/en-US/communicator/locale/profile
|
||||
|
||||
@@ -27,27 +27,5 @@ VPATH = @srcdir@
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
|
||||
FILES = \
|
||||
createProfileWizard.js \
|
||||
createProfileWizard.xul \
|
||||
profileManager.js \
|
||||
deleteProfile.js \
|
||||
deleteProfile.xul \
|
||||
migrateAllProfile.xul \
|
||||
newProfile1_1.xul \
|
||||
newProfile1_2.xul \
|
||||
newProfile1_1.js \
|
||||
newProfile1_2.js \
|
||||
profileSelection.xul \
|
||||
profileSelection.js \
|
||||
confirmMigration.xul \
|
||||
confirmMigration.js \
|
||||
selectLang.xul \
|
||||
selectLang.js \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(FILES)) $(DIST)/bin/chrome/packages/core/communicator/content/profile
|
||||
|
||||
|
||||
@@ -26,24 +26,5 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
|
||||
FILES = \
|
||||
createProfileWizard.dtd \
|
||||
newProfile1_1.dtd \
|
||||
newProfile1_2.dtd \
|
||||
profileManager.properties \
|
||||
profileManagerDelete.dtd \
|
||||
profileManagerMigrateAll.dtd \
|
||||
createProfileWizard.properties \
|
||||
newProfile1_2.properties \
|
||||
migration.properties \
|
||||
profileSelection.dtd \
|
||||
confirmMigration.dtd \
|
||||
selectLang.dtd \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(FILES)) $(DIST)/bin/chrome/locales/en-US/communicator/locale/profile
|
||||
|
||||
|
||||
@@ -26,13 +26,3 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
COMMUNICATOR_CONTENT_DIR = $(DIST)/bin/chrome/packages/core/communicator/content
|
||||
COMMUNICATOR_EXPORT_CONTENT = \
|
||||
$(srcdir)/securityOverlay.xul \
|
||||
$(srcdir)/securityUI.js \
|
||||
$(srcdir)/PSMTaskMenu.xul \
|
||||
$(NULL)
|
||||
|
||||
install::
|
||||
$(INSTALL) $(COMMUNICATOR_EXPORT_CONTENT) $(COMMUNICATOR_CONTENT_DIR)
|
||||
|
||||
@@ -25,17 +25,6 @@ srcdir = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
COMMUNICATOR_RESOURCE_CONTENT = \
|
||||
$(srcdir)/PSMTaskMenu.dtd \
|
||||
$(srcdir)/security.properties \
|
||||
$(srcdir)/securityOverlay.dtd \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(COMMUNICATOR_RESOURCE_CONTENT) $(DIST)/bin/chrome/locales/en-US/communicator/locale
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -28,16 +28,13 @@ VPATH = @srcdir@
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
CHROME_DIR = skins/$(THEME)
|
||||
CHROME_MISC_DIR = .
|
||||
CHROME_TYPE = skin
|
||||
|
||||
CHROME_MISC = \
|
||||
manifest.rdf \
|
||||
preview.png \
|
||||
$(NULL)
|
||||
|
||||
DIRS = communicator global navigator editor messenger
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
chrome::
|
||||
@$(REGCHROME) skin blue/communicator blue.jar; \
|
||||
$(REGCHROME) skin blue/editor blue.jar; \
|
||||
$(REGCHROME) skin blue/global blue.jar; \
|
||||
$(REGCHROME) skin blue/messenger blue.jar; \
|
||||
$(REGCHROME) skin blue/navigator blue.jar
|
||||
|
||||
@@ -28,38 +28,8 @@ VPATH = @srcdir@
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
EXPORT_RESOURCE = \
|
||||
$(srcdir)/brand.css \
|
||||
$(srcdir)/securityOverlay.css \
|
||||
$(srcdir)/box.css \
|
||||
$(srcdir)/button.css \
|
||||
$(srcdir)/communicator.css \
|
||||
$(srcdir)/formatting.css \
|
||||
$(srcdir)/menubuttonBindings.xml \
|
||||
$(srcdir)/menubutton.css \
|
||||
$(srcdir)/splitter.css \
|
||||
$(srcdir)/toolbar.css \
|
||||
$(srcdir)/navbar-endbox.gif \
|
||||
$(srcdir)/tb-menubutton-dm.gif \
|
||||
$(srcdir)/tb-menubutton-dm-disabled.gif \
|
||||
$(srcdir)/online.gif \
|
||||
$(srcdir)/offline.gif \
|
||||
$(srcdir)/document.gif \
|
||||
$(srcdir)/document-error.gif \
|
||||
$(srcdir)/lock.gif \
|
||||
$(srcdir)/unlock.gif \
|
||||
$(srcdir)/broken.gif \
|
||||
$(srcdir)/tasksOverlay.css \
|
||||
$(srcdir)/dialogOverlay.css \
|
||||
$(srcdir)/prefpanels.css \
|
||||
$(srcdir)/content-large.gif \
|
||||
$(srcdir)/content-small.gif \
|
||||
$(NULL)
|
||||
|
||||
DIRS = search xpinstall sidebar bookmarks directory profile regviewer related
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(EXPORT_RESOURCE) $(DIST)/bin/chrome/skins/$(THEME)/communicator/skin
|
||||
|
||||
|
||||
@@ -28,29 +28,4 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/communicator/skin/bookmarks
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
bookmark-folder-closed.gif \
|
||||
bookmark-folder-closed-sel.gif \
|
||||
bookmark-folder-open.gif \
|
||||
bookmark-folder-open-sel.gif \
|
||||
home.gif \
|
||||
home-sel.gif \
|
||||
bookmark-item.gif \
|
||||
bookmarks.css \
|
||||
iefavorite.gif \
|
||||
personal-folder-closed.gif \
|
||||
personal-folder-closed-sel.gif \
|
||||
personal-folder-open.gif \
|
||||
personal-folder-open-sel.gif \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
|
||||
|
||||
@@ -27,23 +27,4 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/communicator/skin/directory
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
directory.css \
|
||||
file-folder-closed-sel.gif \
|
||||
file-folder-closed.gif \
|
||||
file-folder-open-sel.gif \
|
||||
file-folder-open.gif \
|
||||
file-icon-sel.gif \
|
||||
file-icon.gif \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
|
||||
|
||||
@@ -27,21 +27,4 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/communicator/skin/profile
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
newProfile1_2.css \
|
||||
profileicon-large.gif \
|
||||
profile.css \
|
||||
migrate.gif \
|
||||
profileManager.css \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
|
||||
|
||||
@@ -27,17 +27,4 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/communicator/skin/regviewer
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
regviewer.css \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
|
||||
|
||||
@@ -27,18 +27,4 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/communicator/skin/related
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
related.css \
|
||||
sitemap.gif \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
|
||||
|
||||
@@ -27,24 +27,4 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/communicator/skin/search
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
icons.css \
|
||||
result.gif \
|
||||
category.gif \
|
||||
internet.css \
|
||||
search-editor.css \
|
||||
findresults.css \
|
||||
internetresults.css \
|
||||
search.css \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
|
||||
|
||||
@@ -27,39 +27,4 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/communicator/skin/sidebar
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
list-up-dis.gif \
|
||||
sidebar-icon.gif \
|
||||
customize.css \
|
||||
list-up.gif \
|
||||
sidebar-topright-cap.gif \
|
||||
list-down-dis.gif \
|
||||
preview.css \
|
||||
sidebar.css \
|
||||
list-down.gif \
|
||||
sidebar-bottomright-cap.gif \
|
||||
sidebarSplitterBindings.xml \
|
||||
sbgrippy-left-hover.gif \
|
||||
sbgrippy-left.gif \
|
||||
sbgrippy-right-hover.gif \
|
||||
sbgrippy-right.gif \
|
||||
sbgrippy-up-hover.gif \
|
||||
sbgrippy-up.gif \
|
||||
sbgrippy-down-hover.gif \
|
||||
sbgrippy-down.gif \
|
||||
sidebar-close-hover.gif \
|
||||
sidebar-close.gif \
|
||||
sidebar-open-hover.gif \
|
||||
sidebar-open.gif \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
|
||||
|
||||
@@ -27,17 +27,4 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/communicator/skin/xpinstall
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
xpinstall.css \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
|
||||
|
||||
@@ -28,22 +28,6 @@ VPATH = @srcdir@
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/editor/skin
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
EdImageMapPage.css \
|
||||
EditorToolbars.css \
|
||||
EdImageMap.css \
|
||||
EditorDialog.css \
|
||||
editor.css \
|
||||
$(NULL)
|
||||
|
||||
DIRS = images
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
|
||||
|
||||
@@ -27,88 +27,4 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/editor/skin/images
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
Map_Copy.gif \
|
||||
Map_Cut.gif \
|
||||
Map_Paste.gif \
|
||||
Map_checker.gif \
|
||||
Map_circleTool.gif \
|
||||
Map_contrast.gif \
|
||||
Map_pointerTool.gif \
|
||||
Map_polygonTool.gif \
|
||||
Map_rectangleTool.gif \
|
||||
Map_zoomIn.gif \
|
||||
Map_zoomOut.gif \
|
||||
align.gif \
|
||||
anchor-in-doc.gif \
|
||||
anchor-white.gif \
|
||||
anchor.gif \
|
||||
bold.gif \
|
||||
bold_disabled.gif \
|
||||
bullets.gif \
|
||||
bullets_disabled.gif \
|
||||
center.gif \
|
||||
center_disabled.gif \
|
||||
color.gif \
|
||||
dec-font-size.gif \
|
||||
dec-font-size_disabled.gif \
|
||||
div.gif \
|
||||
find.gif \
|
||||
hline-white.gif \
|
||||
hline.gif \
|
||||
hover-teal.gif \
|
||||
image-white.gif \
|
||||
image.gif \
|
||||
img-align-bottom.gif \
|
||||
img-align-left.gif \
|
||||
img-align-middle.gif \
|
||||
img-align-right.gif \
|
||||
img-align-top.gif \
|
||||
inc-font-size.gif \
|
||||
inc-font-size_disabled.gif \
|
||||
indent.gif \
|
||||
indent_disabled.gif \
|
||||
italic.gif \
|
||||
italic_disabled.gif \
|
||||
justify.gif \
|
||||
justify_disabled.gif \
|
||||
left.gif \
|
||||
left_disabled.gif \
|
||||
link-white.gif \
|
||||
link.gif \
|
||||
newfile.gif \
|
||||
numbers.gif \
|
||||
numbers_disabled.gif \
|
||||
object-popup.gif \
|
||||
openfile.gif \
|
||||
outdent.gif \
|
||||
outdent_disabled.gif \
|
||||
preview.gif \
|
||||
print.gif \
|
||||
publish.gif \
|
||||
right.gif \
|
||||
right_disabled.gif \
|
||||
savefile.gif \
|
||||
savemod.gif \
|
||||
span.gif \
|
||||
spell.gif \
|
||||
table-white.gif \
|
||||
table.gif \
|
||||
underline.gif \
|
||||
underline_disabled.gif \
|
||||
editmode-normal.gif \
|
||||
editmode-tags.gif \
|
||||
editmode-html.gif \
|
||||
editmode-preview.gif \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
|
||||
|
||||
@@ -27,150 +27,4 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/global/skin
|
||||
|
||||
# split EXPORT_RESOURCE_SAMPLES in two otherwise the generated commands
|
||||
# can be too long for some systems.
|
||||
EXPORT_RESOURCE_SAMPLES_1 = \
|
||||
alert-icon.gif \
|
||||
animthrob.gif \
|
||||
animthrob_single.gif \
|
||||
blank.gif \
|
||||
box.css \
|
||||
button.css \
|
||||
button28-bg-active.gif \
|
||||
button28-bg-disabled.gif \
|
||||
button28-bg-hover.gif \
|
||||
button28-bg.gif \
|
||||
button32-bg-active.gif \
|
||||
button32-bg-disabled.gif \
|
||||
button32-bg-hover.gif \
|
||||
button32-bg.gif \
|
||||
check-check-disabled.gif \
|
||||
check-check.gif \
|
||||
check-radio-disabled.gif \
|
||||
check-radio.gif \
|
||||
checkbox.css \
|
||||
closedtwisty-selected.gif \
|
||||
closedtwisty.gif \
|
||||
columnselect.gif \
|
||||
columnselect-hover.gif \
|
||||
commonDialog.css \
|
||||
console.css \
|
||||
dir-closed.gif \
|
||||
dir-open.gif \
|
||||
error-icon.gif \
|
||||
filepicker.css \
|
||||
formatting.css \
|
||||
global.css \
|
||||
gray-bottomleft.gif \
|
||||
gray-bottomright.gif \
|
||||
gray-topright.gif \
|
||||
grippy-horizontal-after.gif \
|
||||
grippy-horizontal-before.gif \
|
||||
grippy-vertical-after.gif \
|
||||
grippy-vertical-before.gif \
|
||||
lessCOls_dis.gif \
|
||||
lessCols.gif \
|
||||
lessCols_mo.gif \
|
||||
menu-arrow-disabled.gif \
|
||||
menu-arrow-hover.gif \
|
||||
menu-arrow.gif \
|
||||
menu-check-disabled.gif \
|
||||
menu-check-hover.gif \
|
||||
menu-check.gif \
|
||||
menu-radio-disabled.gif \
|
||||
menu-radio-hover.gif \
|
||||
menu-radio.gif \
|
||||
menu.css \
|
||||
menubutton.css \
|
||||
menulist.css \
|
||||
message-icon.gif \
|
||||
moreCols.gif \
|
||||
moreCols_dis.gif \
|
||||
moreCols_mo.gif \
|
||||
n-box-navbar.gif \
|
||||
n-box.gif \
|
||||
navbar-bg-begincap.gif \
|
||||
navbar-bg.gif \
|
||||
navbar-endcap.gif \
|
||||
opentwisty-selected.gif \
|
||||
opentwisty.gif \
|
||||
otherbutton28-bg-active.gif \
|
||||
otherbutton28-bg-hover.gif \
|
||||
print.gif \
|
||||
progressmeter-busy.gif \
|
||||
question-icon.gif \
|
||||
radio.css \
|
||||
return-disabled.gif \
|
||||
return.gif
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES_2 = \
|
||||
arrow-up.gif \
|
||||
arrow-down.gif \
|
||||
arrow-left.gif \
|
||||
arrow-right.gif \
|
||||
scroll-down-disabled.gif \
|
||||
scroll-down-hover.gif \
|
||||
scroll-down.gif \
|
||||
scroll-left-disabled.gif \
|
||||
scroll-left-hover.gif \
|
||||
scroll-left.gif \
|
||||
scroll-right-disabled.gif \
|
||||
scroll-right-hover.gif \
|
||||
scroll-right.gif \
|
||||
scroll-thumb-horiz-disabled.gif \
|
||||
scroll-thumb-horiz-hover.gif \
|
||||
scroll-thumb-horiz.gif \
|
||||
scroll-thumb-vert-disabled.gif \
|
||||
scroll-thumb-vert-hover.gif \
|
||||
scroll-thumb-vert.gif \
|
||||
scroll-up-disabled.gif \
|
||||
scroll-up-hover.gif \
|
||||
scroll-up.gif \
|
||||
scrollbars.css \
|
||||
search.gif \
|
||||
seltab-leftedge.gif \
|
||||
seltab-rightedge.gif \
|
||||
sortAscending.gif \
|
||||
sortDescending.gif \
|
||||
stop.gif \
|
||||
tab-leftedge.gif \
|
||||
tab-rightedge.gif \
|
||||
taskbar-addressbook.gif \
|
||||
taskbar-composer.gif \
|
||||
taskbar-mail.gif \
|
||||
taskbar-mailnew.gif \
|
||||
taskbar-navigator.gif \
|
||||
taskbar-popup-arrow.gif \
|
||||
taskbar-tab-hover.gif \
|
||||
taskbar-tab-minimized.gif \
|
||||
taskbar-tab-trans.gif \
|
||||
taskbar-tab.gif \
|
||||
textfield.css \
|
||||
toolbar-begincap.gif \
|
||||
toolbar-dropdown-hover.gif \
|
||||
toolbar-dropdown.gif \
|
||||
toolbar-endcap.gif \
|
||||
toolbar-menu-arrow-disabled.gif \
|
||||
toolbar-menu-arrow-hover.gif \
|
||||
toolbar-menu-arrow.gif \
|
||||
toolbar.css \
|
||||
tree.css \
|
||||
wizardOverlay.css \
|
||||
splitter.css \
|
||||
tabcontrol.css \
|
||||
loading.gif \
|
||||
globalBindings.xml \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES_1)) $(SAMPLES_DIR)
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES_2)) $(SAMPLES_DIR)
|
||||
|
||||
distclean clean clobber realclean clobber_all::
|
||||
rm -f $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES_1))
|
||||
rm -f $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES_2))
|
||||
|
||||
@@ -28,118 +28,6 @@ VPATH = @srcdir@
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/messenger/skin
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
AccountManager.css \
|
||||
addtoab.gif \
|
||||
attach.gif \
|
||||
check.gif \
|
||||
dot.gif \
|
||||
fieldMapImport.css \
|
||||
file.gif \
|
||||
flagcol.gif \
|
||||
flaggedmail.gif \
|
||||
folder-closed.gif \
|
||||
folder-draft-open.gif \
|
||||
folder-draft-share-open.gif \
|
||||
folder-draft-share.gif \
|
||||
folder-draft.gif \
|
||||
folder-filed-open.gif \
|
||||
folder-filed.gif \
|
||||
folder-hasmail.gif \
|
||||
folder-inbox-new.gif \
|
||||
folder-inbox-open.gif \
|
||||
folder-inbox-share-open.gif \
|
||||
folder-inbox-share.gif \
|
||||
folder-inbox.gif \
|
||||
folder-mailserver.gif \
|
||||
folder-new-closed.gif \
|
||||
folder-new-open.gif \
|
||||
folder-new.gif \
|
||||
folder-newsgroup-new.gif \
|
||||
folder-newsgroup.gif \
|
||||
folder-open.gif \
|
||||
folder-outbox-open.gif \
|
||||
folder-outbox.gif \
|
||||
folder-sent-open.gif \
|
||||
folder-sent-share-open.gif \
|
||||
folder-sent-share.gif \
|
||||
folder-sent.gif \
|
||||
folder-server-open.gif \
|
||||
folder-server.gif \
|
||||
folder-share-open.gif \
|
||||
folder-share.gif \
|
||||
folder-template-open.gif \
|
||||
folder-template-share-open.gif \
|
||||
folder-template-share.gif \
|
||||
folder-template.gif \
|
||||
folder-trash-open.gif \
|
||||
folder-trash-share-open.gif \
|
||||
folder-trash-share.gif \
|
||||
folder-trash.gif \
|
||||
folderPane.css \
|
||||
forward.gif \
|
||||
frown.gif \
|
||||
getmsg.gif \
|
||||
inbox.gif \
|
||||
less.gif \
|
||||
local-mailhost.gif \
|
||||
mailfolder.gif \
|
||||
mailheader.css \
|
||||
message-mail-attach.gif \
|
||||
message-mail-imapdelete.gif \
|
||||
message-mail-new.gif \
|
||||
message-mail.gif \
|
||||
message-news-new.gif \
|
||||
message-news.gif \
|
||||
messenger.css \
|
||||
more.gif \
|
||||
msgHdrViewOverlay.css \
|
||||
newmsg.gif \
|
||||
newshost.gif \
|
||||
next.gif \
|
||||
open-mailfolder.gif \
|
||||
outbox.gif \
|
||||
pref-mailnews.css \
|
||||
readcol.gif \
|
||||
readmail.gif \
|
||||
reply.gif \
|
||||
replyall.gif \
|
||||
server-local-new.gif \
|
||||
server-local.gif \
|
||||
server-mail-new.gif \
|
||||
server-mail.gif \
|
||||
server-news-lock.gif \
|
||||
server-news-new.gif \
|
||||
server-news.gif \
|
||||
server-remote-lock.gif \
|
||||
server-remote.gif \
|
||||
sick.gif \
|
||||
smile.gif \
|
||||
subscribe.css \
|
||||
threadPane.css \
|
||||
threadcol.gif \
|
||||
thread-open.gif \
|
||||
thread-closed.gif \
|
||||
thread-new-open.gif \
|
||||
thread-new-closed.gif \
|
||||
trash.gif \
|
||||
unreadmail.gif \
|
||||
unthreadcol.gif \
|
||||
winclassic.gif \
|
||||
wink.gif \
|
||||
winwide.gif \
|
||||
wizard.css \
|
||||
importDialog.css \
|
||||
$(NULL)
|
||||
|
||||
DIRS = addressbook messengercompose
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
|
||||
|
||||
@@ -27,26 +27,4 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/messenger/skin/addressbook
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
addressbook.css \
|
||||
newcard.gif \
|
||||
newlist.gif \
|
||||
edit.gif \
|
||||
property.gif \
|
||||
abnewmsg.gif \
|
||||
newmsgab.gif \
|
||||
person.gif \
|
||||
list.gif \
|
||||
myaddrbk.gif \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
|
||||
|
||||
@@ -27,27 +27,4 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/messenger/skin/messengercompose
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
messengercompose.css \
|
||||
send.gif \
|
||||
quote.gif \
|
||||
address.gif \
|
||||
attach.gif \
|
||||
spelling.gif \
|
||||
save.gif \
|
||||
stop.gif \
|
||||
sendConvAltering.gif \
|
||||
sendConvNo.gif \
|
||||
sendConvYes.gif \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
|
||||
|
||||
@@ -27,33 +27,4 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/navigator/skin
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
alertl.gif \
|
||||
back.gif \
|
||||
errorl.gif \
|
||||
forward.gif \
|
||||
home.gif \
|
||||
location-hover.gif \
|
||||
location.gif \
|
||||
messagel.gif \
|
||||
mynetscape.gif \
|
||||
n-box-persbar.gif \
|
||||
navigator.css \
|
||||
print.gif \
|
||||
questionl.gif \
|
||||
reload.gif \
|
||||
search.gif \
|
||||
stop.gif \
|
||||
navigatorBindings.xml \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
|
||||
|
||||
@@ -28,16 +28,13 @@ VPATH = @srcdir@
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
CHROME_DIR = skins/$(THEME)
|
||||
CHROME_MISC_DIR = .
|
||||
CHROME_TYPE = skin
|
||||
|
||||
CHROME_MISC = \
|
||||
manifest.rdf \
|
||||
preview/win/preview.png \
|
||||
$(NULL)
|
||||
|
||||
DIRS = communicator editor global messenger navigator
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
chrome::
|
||||
@$(REGCHROME) skin classic/communicator classic.jar; \
|
||||
$(REGCHROME) skin classic/editor classic.jar; \
|
||||
$(REGCHROME) skin classic/global classic.jar; \
|
||||
$(REGCHROME) skin classic/messenger classic.jar; \
|
||||
$(REGCHROME) skin classic/navigator classic.jar
|
||||
|
||||
@@ -28,29 +28,7 @@ VPATH = @srcdir@
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
EXPORT_RESOURCE = \
|
||||
$(srcdir)/lock.gif \
|
||||
$(srcdir)/unlock.gif \
|
||||
$(srcdir)/broken.gif \
|
||||
$(srcdir)/menubuttonBindings.xml \
|
||||
$(srcdir)/offline.gif \
|
||||
$(srcdir)/online.gif \
|
||||
$(srcdir)/smallheader-bg.gif \
|
||||
$(srcdir)/smallheader-bg-pale.gif \
|
||||
$(srcdir)/securityOverlay.css \
|
||||
$(srcdir)/toolbar-bg.gif \
|
||||
$(srcdir)/toolbar-bg.png \
|
||||
$(srcdir)/search.gif \
|
||||
$(srcdir)/search-active.gif \
|
||||
$(srcdir)/search-hover.gif \
|
||||
$(srcdir)/content-large.gif \
|
||||
$(srcdir)/content-small.gif \
|
||||
$(NULL)
|
||||
|
||||
DIRS = bookmarks directory profile regviewer related search sidebar win xpinstall
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(EXPORT_RESOURCE) $(DIST)/bin/chrome/skins/$(THEME)/communicator/skin
|
||||
|
||||
|
||||
@@ -28,30 +28,4 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/communicator/skin/bookmarks
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
bookmark-folder-closed.gif \
|
||||
bookmark-folder-open.gif \
|
||||
bookmark-item.gif \
|
||||
bookmarks.css \
|
||||
home.gif \
|
||||
home-hover.gif \
|
||||
home-active.gif \
|
||||
iefavorite.gif \
|
||||
iefolder.gif \
|
||||
personal-folder-closed.gif \
|
||||
personal-folder-open.gif \
|
||||
location.gif \
|
||||
location-hover.gif \
|
||||
location-clicked.gif \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
|
||||
|
||||
@@ -27,23 +27,4 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/communicator/skin/directory
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
directory.css \
|
||||
file-folder-closed-sel.gif \
|
||||
file-folder-closed.gif \
|
||||
file-folder-open-sel.gif \
|
||||
file-folder-open.gif \
|
||||
file-icon-sel.gif \
|
||||
file-icon.gif \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
|
||||
|
||||
@@ -27,18 +27,5 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/communicator/skin/profile
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
newProfile1_2.css \
|
||||
profile.css \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
|
||||
|
||||
@@ -27,17 +27,5 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/communicator/skin/regviewer
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
regviewer.css \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
|
||||
|
||||
@@ -27,18 +27,4 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/communicator/skin/related
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
related.css \
|
||||
sitemap.gif \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
|
||||
|
||||
@@ -28,19 +28,6 @@ VPATH = @srcdir@
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/communicator/skin/search
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
category.gif \
|
||||
result.gif \
|
||||
$(NULL)
|
||||
|
||||
DIRS = win
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
|
||||
|
||||
@@ -27,22 +27,4 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/communicator/skin/search/win
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
findresults.css \
|
||||
icons.css \
|
||||
internet.css \
|
||||
internetresults.css \
|
||||
search-editor.css \
|
||||
search.css \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
|
||||
|
||||
@@ -28,22 +28,6 @@ VPATH = @srcdir@
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/communicator/skin/sidebar
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
sidebarSplitterBindings.xml \
|
||||
sidebar-close-hover.gif \
|
||||
sidebar-close.gif \
|
||||
sidebar-open-hover.gif \
|
||||
sidebar-open.gif \
|
||||
$(NULL)
|
||||
|
||||
DIRS = win
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
|
||||
|
||||
@@ -27,19 +27,4 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/communicator/skin/sidebar
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
customize.css \
|
||||
preview.css \
|
||||
sidebar.css \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
|
||||
|
||||
@@ -27,20 +27,4 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/communicator/skin/sidebar
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
customize.css \
|
||||
preview.css \
|
||||
sidebar.css \
|
||||
sidebarBindings.xml \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
|
||||
|
||||
@@ -27,21 +27,5 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
EXPORT_RESOURCE = \
|
||||
$(srcdir)/box.css \
|
||||
$(srcdir)/brand.css \
|
||||
$(srcdir)/button.css \
|
||||
$(srcdir)/communicator.css \
|
||||
$(srcdir)/formatting.css \
|
||||
$(srcdir)/menubutton.css \
|
||||
$(srcdir)/toolbar.css \
|
||||
$(srcdir)/dialogOverlay.css \
|
||||
$(srcdir)/tasksOverlay.css \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(EXPORT_RESOURCE) $(DIST)/bin/chrome/skins/$(THEME)/communicator/skin
|
||||
|
||||
|
||||
@@ -27,22 +27,4 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
EXPORT_RESOURCE = \
|
||||
$(srcdir)/box.css \
|
||||
$(srcdir)/brand.css \
|
||||
$(srcdir)/button.css \
|
||||
$(srcdir)/communicator.css \
|
||||
$(srcdir)/formatting.css \
|
||||
$(srcdir)/menubutton.css \
|
||||
$(srcdir)/toolbar.css \
|
||||
$(srcdir)/dialogOverlay.css \
|
||||
$(srcdir)/tasksOverlay.css \
|
||||
$(srcdir)/search-widgets.css \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(EXPORT_RESOURCE) $(DIST)/bin/chrome/skins/$(THEME)/communicator/skin
|
||||
|
||||
|
||||
@@ -27,17 +27,4 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/communicator/skin/xpinstall
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
xpinstall.css \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
|
||||
|
||||
@@ -28,22 +28,6 @@ VPATH = @srcdir@
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/editor/skin
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
EdImageMap.css \
|
||||
EdImageMapPage.css \
|
||||
EditorDialog.css \
|
||||
EditorToolbars.css \
|
||||
editor.css \
|
||||
$(NULL)
|
||||
|
||||
DIRS = images win
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
|
||||
|
||||
@@ -27,165 +27,4 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/editor/skin/images
|
||||
|
||||
# split EXPORT_RESOURCE_SAMPLES in two otherwise the generated commands
|
||||
# can be too long for some systems.
|
||||
EXPORT_RESOURCE_SAMPLES_1 = \
|
||||
Map_Copy.gif \
|
||||
Map_Cut.gif \
|
||||
Map_Paste.gif \
|
||||
Map_checker.gif \
|
||||
Map_circleTool.gif \
|
||||
Map_contrast.gif \
|
||||
Map_pointerTool.gif \
|
||||
Map_polygonTool.gif \
|
||||
Map_rectangleTool.gif \
|
||||
Map_zoomIn.gif \
|
||||
Map_zoomOut.gif \
|
||||
align-disabled.gif \
|
||||
align-hover-active.gif \
|
||||
align-hover.gif \
|
||||
align.gif \
|
||||
anchor-in-doc.gif \
|
||||
anchor-white.gif \
|
||||
anchor-disabled.gif \
|
||||
anchor-hover-active.gif \
|
||||
anchor-hover.gif \
|
||||
anchor.gif \
|
||||
bold-disabled.gif \
|
||||
bold-hover-active.gif \
|
||||
bold-hover.gif \
|
||||
bold.gif \
|
||||
bullets-disabled.gif \
|
||||
bullets-hover-active.gif \
|
||||
bullets-hover.gif \
|
||||
bullets.gif \
|
||||
center-disabled.gif \
|
||||
center-hover-active.gif \
|
||||
center-hover.gif \
|
||||
center.gif \
|
||||
color-disabled.gif \
|
||||
color-hover-active.gif \
|
||||
color-hover.gif \
|
||||
color.gif \
|
||||
dec-font-size-disabled.gif \
|
||||
dec-font-size-hover-active.gif \
|
||||
dec-font-size-hover.gif \
|
||||
dec-font-size.gif \
|
||||
div.gif \
|
||||
find-disabled.gif \
|
||||
find-hover-active.gif \
|
||||
find-hover.gif \
|
||||
find.gif \
|
||||
hline-white.gif \
|
||||
hline-disabled.gif \
|
||||
hline-hover-active.gif \
|
||||
hline-hover.gif \
|
||||
hline.gif \
|
||||
hover-teal.gif \
|
||||
image-white.gif \
|
||||
image-disabled.gif \
|
||||
image-hover-active.gif \
|
||||
image-hover.gif \
|
||||
image.gif \
|
||||
img-align-bottom.gif \
|
||||
img-align-left.gif \
|
||||
img-align-middle.gif \
|
||||
img-align-right.gif \
|
||||
img-align-top.gif \
|
||||
inc-font-size-disabled.gif \
|
||||
inc-font-size-hover-active.gif \
|
||||
inc-font-size-hover.gif \
|
||||
inc-font-size.gif \
|
||||
indent-disabled.gif \
|
||||
indent-hover-active.gif \
|
||||
indent-hover.gif \
|
||||
indent.gif \
|
||||
italic-disabled.gif \
|
||||
italic-hover-active.gif \
|
||||
italic-hover.gif \
|
||||
italic.gif \
|
||||
justify.gif \
|
||||
justify-hover.gif \
|
||||
justify-hover-active.gif \
|
||||
justify-disabled.gif
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES_2 = \
|
||||
left-disabled.gif \
|
||||
left-hover-active.gif \
|
||||
left-hover.gif \
|
||||
left.gif \
|
||||
link-white.gif \
|
||||
link-disabled.gif \
|
||||
link-hover-active.gif \
|
||||
link-hover.gif \
|
||||
link.gif \
|
||||
newfile-disabled.gif \
|
||||
newfile-hover-active.gif \
|
||||
newfile-hover.gif \
|
||||
newfile.gif \
|
||||
numbers-disabled.gif \
|
||||
numbers-hover-active.gif \
|
||||
numbers-hover.gif \
|
||||
numbers.gif \
|
||||
object-popup.gif \
|
||||
openfile-disabled.gif \
|
||||
openfile-hover-active.gif \
|
||||
openfile-hover.gif \
|
||||
openfile.gif \
|
||||
outdent-disabled.gif \
|
||||
outdent-hover-active.gif \
|
||||
outdent-hover.gif \
|
||||
outdent.gif \
|
||||
preview-disabled.gif \
|
||||
preview-hover-active.gif \
|
||||
preview-hover.gif \
|
||||
preview.gif \
|
||||
print-disabled.gif \
|
||||
print-hover-active.gif \
|
||||
print-hover.gif \
|
||||
print.gif \
|
||||
publish-disabled.gif \
|
||||
publish-hover-active.gif \
|
||||
publish-hover.gif \
|
||||
publish.gif \
|
||||
right-disabled.gif \
|
||||
right-hover-active.gif \
|
||||
right-hover.gif \
|
||||
right.gif \
|
||||
savefile-disabled.gif \
|
||||
savefile-hover-active.gif \
|
||||
savefile-hover.gif \
|
||||
savefile.gif \
|
||||
savemod.gif \
|
||||
span.gif \
|
||||
spell-disabled.gif \
|
||||
spell-hover-active.gif \
|
||||
spell-hover.gif \
|
||||
spell.gif \
|
||||
table-white.gif \
|
||||
table-disabled.gif \
|
||||
table-hover-active.gif \
|
||||
table-hover.gif \
|
||||
table.gif \
|
||||
underline-disabled.gif \
|
||||
underline-hover-active.gif \
|
||||
underline-hover.gif \
|
||||
underline.gif \
|
||||
editmode-normal.gif \
|
||||
editmode-tags.gif \
|
||||
editmode-html.gif \
|
||||
editmode-preview.gif \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES_1)) $(SAMPLES_DIR)
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES_2)) $(SAMPLES_DIR)
|
||||
|
||||
distclean clean clobber realclean clobber_all::
|
||||
rm -f $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES_1))
|
||||
rm -f $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES_2))
|
||||
|
||||
@@ -27,18 +27,5 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/editor/skin
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
EditModeTabs.css \
|
||||
$(NULL)
|
||||
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
|
||||
|
||||
@@ -28,123 +28,6 @@ VPATH = @srcdir@
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/global/skin
|
||||
|
||||
# split EXPORT_RESOURCE_SAMPLES in two otherwise the generated commands
|
||||
# can be too long for some systems.
|
||||
EXPORT_RESOURCE_SAMPLES_1 = \
|
||||
animthrob.gif \
|
||||
animthrob_single.gif \
|
||||
blank.gif \
|
||||
check-check-disabled.gif \
|
||||
check-check.gif \
|
||||
check-radio-disabled.gif \
|
||||
check-radio.gif \
|
||||
columnselect.gif \
|
||||
dir-closed.gif \
|
||||
dir-open.gif \
|
||||
gray-bottomleft.gif \
|
||||
gray-bottomright.gif \
|
||||
gray-topright.gif \
|
||||
grippy-horizontal-after.gif \
|
||||
grippy-horizontal-before.gif \
|
||||
grippy-vertical-after.gif \
|
||||
grippy-vertical-before.gif \
|
||||
lessCOls_dis.gif \
|
||||
lessCols.gif \
|
||||
lessCols_mo.gif \
|
||||
menu-arrow-disabled.gif \
|
||||
menu-arrow-hover.gif \
|
||||
menu-arrow.gif \
|
||||
menu-check-disabled.gif \
|
||||
menu-check-hover.gif \
|
||||
menu-check.gif \
|
||||
menu-radio-disabled.gif \
|
||||
menu-radio-hover.gif \
|
||||
menu-radio.gif \
|
||||
moreCols.gif \
|
||||
moreCols_dis.gif \
|
||||
moreCols_mo.gif \
|
||||
print-disabled.gif \
|
||||
print-hover-active.gif \
|
||||
print-hover.gif \
|
||||
print.gif \
|
||||
progressmeter-busy.gif \
|
||||
return-disabled.gif \
|
||||
return.gif \
|
||||
arrow-up.gif \
|
||||
arrow-down.gif \
|
||||
arrow-left.gif \
|
||||
arrow-right.gif \
|
||||
scroll-down-disabled.gif \
|
||||
scroll-down-hover.gif \
|
||||
scroll-down.gif \
|
||||
scroll-left-disabled.gif \
|
||||
scroll-left-hover.gif \
|
||||
scroll-left.gif \
|
||||
scroll-right-disabled.gif \
|
||||
scroll-right-hover.gif \
|
||||
scroll-right.gif \
|
||||
scroll-up-disabled.gif \
|
||||
scroll-up-hover.gif \
|
||||
scroll-up.gif \
|
||||
search.gif \
|
||||
seltab-leftedge.gif \
|
||||
seltab-rightedge.gif \
|
||||
sortAscending.gif \
|
||||
sortDescending.gif \
|
||||
stop-disabled.gif \
|
||||
stop-hover-active.gif \
|
||||
stop-hover.gif \
|
||||
stop.gif \
|
||||
$(NULL)
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES_2 = \
|
||||
tab-leftedge.gif \
|
||||
tab-rightedge.gif \
|
||||
taskbar-addressbook.gif \
|
||||
taskbar-addressbook-hover.gif \
|
||||
taskbar-composer.gif \
|
||||
taskbar-composer-hover.gif \
|
||||
taskbar-mail.gif \
|
||||
taskbar-mail-hover.gif \
|
||||
taskbar-gotmail.gif \
|
||||
taskbar-gotmail-hover.gif \
|
||||
taskbar-navigator.gif \
|
||||
taskbar-navigator-hover.gif \
|
||||
taskbar-popup-arrow.gif \
|
||||
taskbar-tab-hover.gif \
|
||||
taskbar-tab-minimized.gif \
|
||||
taskbar-tab-trans.gif \
|
||||
taskbar-tab.gif \
|
||||
toolbargrippy-twisty.gif \
|
||||
toolbargrippy-texture.gif \
|
||||
tbg-twisty-collapsed.gif \
|
||||
tbg-texture-collapsed.gif \
|
||||
loading.gif \
|
||||
splitter-drag-bg.gif \
|
||||
dropmarker-down-on-active.gif \
|
||||
dropmarker-down-on-hover.gif \
|
||||
dropmarker-down-disabled.gif \
|
||||
dropmarker-down-on.gif \
|
||||
dropmarker-up-on.gif \
|
||||
menubuttonBindings.xml \
|
||||
twisty-closed-active.gif \
|
||||
twisty-closed.gif \
|
||||
twisty-closed-selected.gif \
|
||||
twisty-open-active.gif \
|
||||
twisty-open.gif \
|
||||
twisty-open-selected.gif \
|
||||
$(NULL)
|
||||
|
||||
DIRS = win
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES_1)) $(SAMPLES_DIR)
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES_2)) $(SAMPLES_DIR)
|
||||
|
||||
distclean clean clobber realclean clobber_all::
|
||||
rm -f $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES_1))
|
||||
rm -f $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES_2))
|
||||
|
||||
@@ -27,44 +27,4 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/global/skin
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
box.css \
|
||||
button.css \
|
||||
checkbox.css \
|
||||
commonDialog.css \
|
||||
console.css \
|
||||
filepicker.css \
|
||||
formatting.css \
|
||||
global.css \
|
||||
menu.css \
|
||||
menubutton.css \
|
||||
menulist.css \
|
||||
radio.css \
|
||||
scrollbars.css \
|
||||
splitter.css \
|
||||
tabcontrol.css \
|
||||
textfield.css \
|
||||
toolbar.css \
|
||||
tree.css \
|
||||
wizardOverlay.css \
|
||||
buttonBindings.xml \
|
||||
classicBindings.xml \
|
||||
menulistBindings.xml \
|
||||
treeBindings.xml \
|
||||
scrollbar-slider-bg.gif \
|
||||
error-icon.gif \
|
||||
message-icon.gif \
|
||||
question-icon.gif \
|
||||
alert-icon.gif \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
|
||||
|
||||
@@ -27,46 +27,4 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/global/skin
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
box.css \
|
||||
button.css \
|
||||
checkbox.css \
|
||||
commonDialog.css \
|
||||
colorpicker.css \
|
||||
console.css \
|
||||
filepicker.css \
|
||||
formatting.css \
|
||||
global.css \
|
||||
menu.css \
|
||||
menubutton.css \
|
||||
menulist.css \
|
||||
radio.css \
|
||||
scrollbars.css \
|
||||
splitter.css \
|
||||
tabcontrol.css \
|
||||
textfield.css \
|
||||
toolbar.css \
|
||||
tree.css \
|
||||
wizardOverlay.css \
|
||||
buttonBindings.xml \
|
||||
classicBindings.xml \
|
||||
menulistBindings.xml \
|
||||
tabBindings.xml \
|
||||
treeBindings.xml \
|
||||
scrollbar-slider-bg.gif \
|
||||
error-icon.gif \
|
||||
message-icon.gif \
|
||||
question-icon.gif \
|
||||
alert-icon.gif \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
|
||||
|
||||
@@ -25,9 +25,6 @@ THEME_ROOT_DEPTH = .
|
||||
include <$(DEPTH)\config\config.mak>
|
||||
include <$(THEME_ROOT_DEPTH)\theme.mk>
|
||||
|
||||
CHROME_TYPE = skin
|
||||
CHROME_DIR = skins\$(THEME)
|
||||
|
||||
DIRS = communicator\search\win \
|
||||
communicator\sidebar\win \
|
||||
communicator\win \
|
||||
|
||||
@@ -28,139 +28,6 @@ VPATH = @srcdir@
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/messenger/skin
|
||||
|
||||
# split EXPORT_RESOURCE_SAMPLES in two otherwise the generated commands
|
||||
# can be too long for some systems.
|
||||
EXPORT_RESOURCE_SAMPLES_1 = \
|
||||
addtoab.gif \
|
||||
attach.gif \
|
||||
check.gif \
|
||||
dot.gif \
|
||||
file-disabled.gif \
|
||||
file-hover-active.gif \
|
||||
file-hover.gif \
|
||||
file.gif \
|
||||
flagcol.gif \
|
||||
flaggedmail.gif \
|
||||
folder-closed.gif \
|
||||
folder-draft-open.gif \
|
||||
folder-draft-share-open.gif \
|
||||
folder-draft-share.gif \
|
||||
folder-draft.gif \
|
||||
folder-filed-open.gif \
|
||||
folder-filed.gif \
|
||||
folder-hasmail.gif \
|
||||
folder-inbox-new.gif \
|
||||
folder-inbox-open.gif \
|
||||
folder-inbox-share-open.gif \
|
||||
folder-inbox-share.gif \
|
||||
folder-inbox.gif \
|
||||
folder-mailserver.gif \
|
||||
folder-new-closed.gif \
|
||||
folder-new-open.gif \
|
||||
folder-new.gif \
|
||||
folder-newsgroup-new.gif \
|
||||
folder-newsgroup.gif \
|
||||
folder-open.gif \
|
||||
folder-outbox-open.gif \
|
||||
folder-outbox.gif \
|
||||
folder-sent-open.gif \
|
||||
folder-sent-share-open.gif \
|
||||
folder-sent-share.gif \
|
||||
folder-sent.gif \
|
||||
folder-server-open.gif \
|
||||
folder-server.gif \
|
||||
folder-share-open.gif \
|
||||
folder-share.gif \
|
||||
folder-template-open.gif \
|
||||
folder-template-share-open.gif \
|
||||
folder-template-share.gif \
|
||||
folder-template.gif \
|
||||
folder-trash-open.gif \
|
||||
folder-trash-share-open.gif \
|
||||
folder-trash-share.gif \
|
||||
folder-trash.gif \
|
||||
forward-disabled.gif \
|
||||
forward-hover-active.gif \
|
||||
forward-hover.gif \
|
||||
forward.gif \
|
||||
frown.gif \
|
||||
getmsg-disabled.gif \
|
||||
getmsg-hover-active.gif \
|
||||
getmsg-hover.gif \
|
||||
getmsg.gif \
|
||||
inbox.gif \
|
||||
less.gif \
|
||||
local-mailhost.gif
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES_2 = \
|
||||
mailfolder.gif \
|
||||
mailheader.css \
|
||||
message-mail-attach.gif \
|
||||
message-mail-imapdelete.gif \
|
||||
message-mail-new.gif \
|
||||
message-mail.gif \
|
||||
message-news-new.gif \
|
||||
message-news.gif \
|
||||
more.gif \
|
||||
newmsg-disabled.gif \
|
||||
newmsg-hover-active.gif \
|
||||
newmsg-hover.gif \
|
||||
newmsg.gif \
|
||||
newshost.gif \
|
||||
next-disabled.gif \
|
||||
next-hover-active.gif \
|
||||
next-hover.gif \
|
||||
next.gif \
|
||||
open-mailfolder.gif \
|
||||
outbox.gif \
|
||||
readcol.gif \
|
||||
readmail.gif \
|
||||
reply-disabled.gif \
|
||||
reply-hover-active.gif \
|
||||
reply-hover.gif \
|
||||
reply.gif \
|
||||
replyall-disabled.gif \
|
||||
replyall-hover-active.gif \
|
||||
replyall-hover.gif \
|
||||
replyall.gif \
|
||||
server-local-new.gif \
|
||||
server-local.gif \
|
||||
server-mail-new.gif \
|
||||
server-mail.gif \
|
||||
server-news-lock.gif \
|
||||
server-news-new.gif \
|
||||
server-news.gif \
|
||||
server-remote-lock.gif \
|
||||
server-remote.gif \
|
||||
sick.gif \
|
||||
smile.gif \
|
||||
threadcol.gif \
|
||||
thread-open.gif \
|
||||
thread-closed.gif \
|
||||
thread-new-open.gif \
|
||||
thread-new-closed.gif \
|
||||
trash.gif \
|
||||
trash-disabled.gif \
|
||||
trash-hover-active.gif \
|
||||
trash-hover.gif \
|
||||
unreadmail.gif \
|
||||
unthreadcol.gif \
|
||||
winclassic.gif \
|
||||
wink.gif \
|
||||
winwide.gif \
|
||||
abcard.gif \
|
||||
$(NULL)
|
||||
|
||||
DIRS = addressbook messengercompose win
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES_1)) $(SAMPLES_DIR)
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES_2)) $(SAMPLES_DIR)
|
||||
|
||||
distclean clean clobber realclean clobber_all::
|
||||
rm -f $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES_1))
|
||||
rm -f $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES_2))
|
||||
|
||||
@@ -28,51 +28,6 @@ VPATH = @srcdir@
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/messenger/skin/addressbook
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
abnewmsg.gif \
|
||||
call-disabled.gif \
|
||||
call-hover-active.gif \
|
||||
call-hover.gif \
|
||||
call.gif \
|
||||
edit.gif \
|
||||
list.gif \
|
||||
myaddrbk.gif \
|
||||
newcard-disabled.gif \
|
||||
newcard-hover-active.gif \
|
||||
newcard-hover.gif \
|
||||
newcard.gif \
|
||||
newlist-disabled.gif \
|
||||
newlist-hover-active.gif \
|
||||
newlist-hover.gif \
|
||||
newlist.gif \
|
||||
newmsgab.gif \
|
||||
newmsg-hover-active.gif \
|
||||
newmsg-disabled.gif \
|
||||
newmsg-hover.gif \
|
||||
newmsg.gif \
|
||||
person-disabled.gif \
|
||||
person-hover-active.gif \
|
||||
person-hover.gif \
|
||||
person.gif \
|
||||
property.gif \
|
||||
searchold-disabled.gif \
|
||||
searchold-hover-active.gif \
|
||||
searchold-hover.gif \
|
||||
searchold.gif \
|
||||
trash-disabled.gif \
|
||||
trash-hover.gif \
|
||||
trash.gif \
|
||||
trash-hover-active.gif \
|
||||
$(NULL)
|
||||
DIRS = win
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
|
||||
|
||||
@@ -27,18 +27,4 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/messenger/skin/addressbook
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
addressbook.css \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
skins/classic.jar:
|
||||
messenger/skin/addressbook/addressbook.css (addressbook.css)
|
||||
classic.jar:
|
||||
skin/classic/messenger/addressbook/addressbook.css (addressbook.css)
|
||||
|
||||
@@ -27,54 +27,4 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/messenger/skin/messengercompose
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
address-disabled.gif \
|
||||
address-hover-active.gif \
|
||||
address-hover.gif \
|
||||
address.gif \
|
||||
attach-disabled.gif \
|
||||
attach-hover-active.gif \
|
||||
attach-hover.gif \
|
||||
attach.gif \
|
||||
attachment.gif \
|
||||
mailoptions-disabled.gif \
|
||||
mailoptions-hover-active.gif \
|
||||
mailoptions-hover.gif \
|
||||
mailoptions.gif \
|
||||
messengercompose.css \
|
||||
quote-disabled.gif \
|
||||
quote-hover-active.gif \
|
||||
quote-hover.gif \
|
||||
quote.gif \
|
||||
save.gif \
|
||||
savemsg-disabled.gif \
|
||||
savemsg-hover-active.gif \
|
||||
savemsg-hover.gif \
|
||||
savemsg.gif \
|
||||
send-disabled.gif \
|
||||
send-hover-active.gif \
|
||||
send-hover.gif \
|
||||
send.gif \
|
||||
sendlater-disabled.gif \
|
||||
sendlater-hover-active.gif \
|
||||
sendlater-hover.gif \
|
||||
sendlater.gif \
|
||||
spelling-disabled.gif \
|
||||
spelling-hover-active.gif \
|
||||
spelling-hover.gif \
|
||||
spelling.gif \
|
||||
stop.gif \
|
||||
sendConvAltering.gif \
|
||||
sendConvNo.gif \
|
||||
sendConvYes.gif \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
|
||||
@@ -27,22 +27,4 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/messenger/skin
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
subscribe.css \
|
||||
threadPane.css \
|
||||
folderPane.css \
|
||||
msgHdrViewOverlay.css \
|
||||
pref-mailnews.css \
|
||||
messenger.css \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
|
||||
distclean clean clobber realclean clobber_all::
|
||||
rm -f $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
skins/classic.jar:
|
||||
messenger/skin/msgHdrViewOverlay.css
|
||||
messenger/skin/threadPane.css
|
||||
messenger/skin/pref-mailnews.css
|
||||
messenger/skin/folderPane.css
|
||||
messenger/skin/messenger.css
|
||||
messenger/skin/subscribe.css
|
||||
classic.jar:
|
||||
skin/classic/messenger/msgHdrViewOverlay.css
|
||||
skin/classic/messenger/threadPane.css
|
||||
skin/classic/messenger/pref-mailnews.css
|
||||
skin/classic/messenger/folderPane.css
|
||||
skin/classic/messenger/messenger.css
|
||||
skin/classic/messenger/subscribe.css
|
||||
|
||||
@@ -28,35 +28,6 @@ VPATH = @srcdir@
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/navigator/skin
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
back.gif \
|
||||
back-disabled.gif \
|
||||
back-hover.gif \
|
||||
back-hover-active.gif \
|
||||
forward.gif \
|
||||
forward-hover.gif \
|
||||
forward-hover-active.gif \
|
||||
forward-disabled.gif \
|
||||
location-hover.gif \
|
||||
location.gif \
|
||||
reload.gif \
|
||||
reload-disabled.gif \
|
||||
reload-hover.gif \
|
||||
reload-hover-active.gif \
|
||||
stop.gif \
|
||||
stop-disabled.gif \
|
||||
stop-hover.gif \
|
||||
stop-hover-active.gif \
|
||||
$(NULL)
|
||||
|
||||
DIRS = win
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
skins/classic.jar:
|
||||
classic.jar:
|
||||
skin/classic/navigator/navigator.css
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user