2012-05-21 04:12:37 -07:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-08-04 11:26:44 -07:00
|
|
|
DEPTH = @DEPTH@
|
2007-03-22 10:30:00 -07:00
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
|
|
|
# Theme Selection
|
|
|
|
#
|
|
|
|
# MacOS X Pinstripe (toolkit/themes/pinstripe)
|
2011-01-24 17:39:12 -08:00
|
|
|
# Windows Winstripe (toolkit/themes/winstripe)
|
2007-03-22 10:30:00 -07:00
|
|
|
# GNOME/Linux Winstripe (toolkit/themes/winstripe) +
|
|
|
|
# GNOMEStripe overrides (toolkit/themes/gnomestripe)
|
|
|
|
# OS/2 Winstripe (toolkit/themes/winstripe) +
|
|
|
|
# PMStripe overrides (toolkit/themes/pmstripe)
|
2009-04-22 21:40:53 -07:00
|
|
|
# faststripe Winstripe + faststripe (no native theme components)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-09-18 19:59:53 -07:00
|
|
|
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
|
2007-03-22 10:30:00 -07:00
|
|
|
DIRS = pinstripe
|
|
|
|
else
|
2009-04-22 21:40:53 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
DIRS = winstripe
|
2009-04-22 21:40:53 -07:00
|
|
|
|
2008-04-19 06:26:02 -07:00
|
|
|
ifneq (,$(filter gtk2 qt,$(MOZ_WIDGET_TOOLKIT)))
|
2007-03-22 10:30:00 -07:00
|
|
|
DIRS += gnomestripe
|
|
|
|
endif
|
|
|
|
ifneq (,$(filter os2,$(MOZ_WIDGET_TOOLKIT)))
|
2011-10-06 09:15:07 -07:00
|
|
|
DIRS += pmstripe/global
|
2007-03-22 10:30:00 -07:00
|
|
|
endif
|
2009-04-22 21:40:53 -07:00
|
|
|
ifdef MOZ_THEME_FASTSTRIPE
|
2011-10-06 09:15:07 -07:00
|
|
|
DIRS += faststripe/global
|
2009-04-22 21:40:53 -07:00
|
|
|
endif
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
endif
|
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|