2012-05-21 11:12:37 +00: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/.
|
2004-06-17 23:01:11 +00:00
|
|
|
|
|
|
|
DEPTH = ../..
|
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
|
|
|
# Theme Selection
|
|
|
|
#
|
|
|
|
# MacOS X Pinstripe (toolkit/themes/pinstripe)
|
2011-01-25 01:39:12 +00:00
|
|
|
# Windows Winstripe (toolkit/themes/winstripe)
|
2004-06-17 23:01:11 +00:00
|
|
|
# GNOME/Linux Winstripe (toolkit/themes/winstripe) +
|
|
|
|
# GNOMEStripe overrides (toolkit/themes/gnomestripe)
|
2006-03-10 15:39:08 +00:00
|
|
|
# OS/2 Winstripe (toolkit/themes/winstripe) +
|
|
|
|
# PMStripe overrides (toolkit/themes/pmstripe)
|
2009-04-23 04:40:53 +00:00
|
|
|
# faststripe Winstripe + faststripe (no native theme components)
|
2004-06-17 23:01:11 +00:00
|
|
|
|
2009-09-19 02:59:53 +00:00
|
|
|
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
|
2004-06-17 23:01:11 +00:00
|
|
|
DIRS = pinstripe
|
|
|
|
else
|
2009-04-23 04:40:53 +00:00
|
|
|
|
2004-06-17 23:01:11 +00:00
|
|
|
DIRS = winstripe
|
2009-04-23 04:40:53 +00:00
|
|
|
|
2008-04-19 13:26:02 +00:00
|
|
|
ifneq (,$(filter gtk2 qt,$(MOZ_WIDGET_TOOLKIT)))
|
2004-06-17 23:01:11 +00:00
|
|
|
DIRS += gnomestripe
|
|
|
|
endif
|
2006-03-10 15:39:08 +00:00
|
|
|
ifneq (,$(filter os2,$(MOZ_WIDGET_TOOLKIT)))
|
2011-10-06 16:15:07 +00:00
|
|
|
DIRS += pmstripe/global
|
2006-03-10 15:39:08 +00:00
|
|
|
endif
|
2009-04-23 04:40:53 +00:00
|
|
|
ifdef MOZ_THEME_FASTSTRIPE
|
2011-10-06 16:15:07 +00:00
|
|
|
DIRS += faststripe/global
|
2009-04-23 04:40:53 +00:00
|
|
|
endif
|
|
|
|
|
2004-06-17 23:01:11 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|