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
|
|
|
|
2012-08-04 18:26:44 +00:00
|
|
|
DEPTH = @DEPTH@
|
2004-06-17 23:01:11 +00:00
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
|
|
|
#
|
|
|
|
# Theme Selection
|
|
|
|
#
|
2007-11-15 06:55:11 +00:00
|
|
|
# Windows Winstripe
|
|
|
|
# GNOME/Linux Gnomestripe
|
2004-06-17 23:01:11 +00:00
|
|
|
# MacOS X Pinstripe
|
|
|
|
#
|
|
|
|
|
2009-09-19 02:59:53 +00:00
|
|
|
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
|
2004-06-17 23:01:11 +00:00
|
|
|
DIRS = pinstripe
|
2007-11-15 08:24:05 +00:00
|
|
|
else
|
2007-11-15 08:31:36 +00:00
|
|
|
DIRS = winstripe
|
|
|
|
endif
|
2008-04-19 13:26:02 +00:00
|
|
|
ifneq (,$(filter gtk2 qt,$(MOZ_WIDGET_TOOLKIT)))
|
2007-11-15 20:52:45 +00:00
|
|
|
DIRS = gnomestripe
|
2004-06-17 23:01:11 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|