Need to break up large groups of files to prevent command overflow. r,a=leaf

This commit is contained in:
colin%theblakes.com 2000-07-08 12:56:41 +00:00
parent 347f067798
commit b89d0f5db1
3 changed files with 33 additions and 15 deletions

View File

@ -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))

View File

@ -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))

View File

@ -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))