зеркало из https://github.com/mozilla/pjs.git
142 строки
3.2 KiB
Makefile
142 строки
3.2 KiB
Makefile
#
|
|
# The contents of this file are subject to the Netscape Public
|
|
# License Version 1.1 (the "License"); you may not use this file
|
|
# except in compliance with the License. You may obtain a copy of
|
|
# the License at http://www.mozilla.org/NPL/
|
|
#
|
|
# Software distributed under the License is distributed on an "AS
|
|
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
# implied. See the License for the specific language governing
|
|
# rights and limitations under the License.
|
|
#
|
|
# The Original Code is mozilla.org code.
|
|
#
|
|
# The Initial Developer of the Original Code is Netscape
|
|
# Communications Corporation. Portions created by Netscape are
|
|
# Copyright (C) 2000 Netscape Communications Corporation. All
|
|
# Rights Reserved.
|
|
#
|
|
# Contributor(s):
|
|
#
|
|
|
|
DEPTH = ../../..
|
|
THEME_ROOT_DEPTH = @srcdir@/..
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
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 \
|
|
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)
|
|
|