gecko-dev/browser/themes/Makefile.in

30 lines
642 B
Makefile
Raw Normal View History

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
#
# Windows Winstripe
# GNOME/Linux Gnomestripe
2004-06-17 23:01:11 +00:00
# MacOS X Pinstripe
#
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
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