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
|
|
|
|
#
|
2007-11-14 22:55:11 -08:00
|
|
|
# Windows Winstripe
|
|
|
|
# GNOME/Linux Gnomestripe
|
2007-03-22 10:30:00 -07:00
|
|
|
# MacOS X Pinstripe
|
|
|
|
#
|
|
|
|
|
2009-09-18 19:59:53 -07:00
|
|
|
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
|
2007-03-22 10:30:00 -07:00
|
|
|
DIRS = pinstripe
|
2007-11-15 00:24:05 -08:00
|
|
|
else
|
2007-11-15 00:31:36 -08:00
|
|
|
DIRS = winstripe
|
|
|
|
endif
|
2008-04-19 06:26:02 -07:00
|
|
|
ifneq (,$(filter gtk2 qt,$(MOZ_WIDGET_TOOLKIT)))
|
2007-11-15 12:52:45 -08:00
|
|
|
DIRS = gnomestripe
|
2007-03-22 10:30:00 -07:00
|
|
|
endif
|
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|