mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-03-06 00:31:27 +00:00
Need to break up large groups of files to prevent command overflow. r,a=leaf
This commit is contained in:
parent
347f067798
commit
b89d0f5db1
@ -30,7 +30,9 @@ include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/editor/skin/images
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
# 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 \
|
||||
@ -105,7 +107,9 @@ EXPORT_RESOURCE_SAMPLES = \
|
||||
italic-hover-active.gif \
|
||||
italic-hover.gif \
|
||||
italic.gif \
|
||||
justify.gif \
|
||||
justify.gif
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES_2 = \
|
||||
left-disabled.gif \
|
||||
left-hover-active.gif \
|
||||
left-hover.gif \
|
||||
@ -176,8 +180,10 @@ EXPORT_RESOURCE_SAMPLES = \
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
$(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))
|
||||
|
@ -30,7 +30,9 @@ include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/messenger/skin
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
# split EXPORT_RESOURCE_SAMPLES in two otherwise the generated commands
|
||||
# can be too long for some systems.
|
||||
EXPORT_RESOURCE_SAMPLES_1 = \
|
||||
AccountManager.css \
|
||||
addtoab.gif \
|
||||
attach.gif \
|
||||
@ -93,7 +95,9 @@ EXPORT_RESOURCE_SAMPLES = \
|
||||
getmsg.gif \
|
||||
inbox.gif \
|
||||
less.gif \
|
||||
local-mailhost.gif \
|
||||
local-mailhost.gif
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES_2 = \
|
||||
mailfolder.gif \
|
||||
mailheader.css \
|
||||
message-mail-attach.gif \
|
||||
@ -158,8 +162,10 @@ DIRS = addressbook messengercompose
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
$(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))
|
||||
|
@ -30,7 +30,9 @@ include $(THEME_ROOT_DEPTH)/theme.mk
|
||||
|
||||
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/global/skin
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES = \
|
||||
# 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 \
|
||||
@ -99,7 +101,9 @@ EXPORT_RESOURCE_SAMPLES = \
|
||||
question-icon.gif \
|
||||
radio.css \
|
||||
return-disabled.gif \
|
||||
return.gif \
|
||||
return.gif
|
||||
|
||||
EXPORT_RESOURCE_SAMPLES_2 = \
|
||||
arrow-up.gif \
|
||||
arrow-down.gif \
|
||||
arrow-left.gif \
|
||||
@ -160,8 +164,10 @@ EXPORT_RESOURCE_SAMPLES = \
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
||||
|
||||
install::
|
||||
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
||||
$(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))
|
||||
|
Loading…
x
Reference in New Issue
Block a user