mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
154 lines
3.7 KiB
Makefile
154 lines
3.7 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)/global/skin
|
|
|
|
EXPORT_RESOURCE_SAMPLES = \
|
|
animthrob.gif \
|
|
animthrob_single.gif \
|
|
blank.gif \
|
|
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 \
|
|
closedtwisty-selected.gif \
|
|
closedtwisty.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 \
|
|
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-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-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 \
|
|
search.gif \
|
|
seltab-leftedge.gif \
|
|
seltab-rightedge.gif \
|
|
sortAscending.gif \
|
|
sortDescending.gif \
|
|
stop-disabled.gif \
|
|
stop-hover-active.gif \
|
|
stop-hover.gif \
|
|
stop.gif \
|
|
tab-leftedge.gif \
|
|
tab-rightedge.gif \
|
|
taskbar-addressbook.gif \
|
|
taskbar-composer.gif \
|
|
taskbar-mail.gif \
|
|
taskbar-navigator.gif \
|
|
taskbar-popup-arrow.gif \
|
|
taskbar-tab-hover.gif \
|
|
taskbar-tab-minimized.gif \
|
|
taskbar-tab-trans.gif \
|
|
taskbar-tab.gif \
|
|
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 \
|
|
toolbargrippy-twisty.gif \
|
|
toolbargrippy-texture.gif \
|
|
loading.gif \
|
|
splitter-drag-bg.gif \
|
|
menubuttonBindings.xml \
|
|
$(NULL)
|
|
|
|
DIRS = unix
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
|
|
|
|
install::
|
|
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)
|
|
|