gecko-dev/toolkit/themes/Makefile.in

42 lines
1.1 KiB
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
#
# MacOS X Pinstripe (toolkit/themes/pinstripe)
# Windows Winstripe (toolkit/themes/winstripe)
2004-06-17 23:01:11 +00:00
# GNOME/Linux Winstripe (toolkit/themes/winstripe) +
# GNOMEStripe overrides (toolkit/themes/gnomestripe)
# OS/2 Winstripe (toolkit/themes/winstripe) +
# PMStripe overrides (toolkit/themes/pmstripe)
# faststripe Winstripe + faststripe (no native theme components)
2004-06-17 23:01:11 +00:00
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
2004-06-17 23:01:11 +00:00
DIRS = pinstripe
else
2004-06-17 23:01:11 +00:00
DIRS = winstripe
ifneq (,$(filter gtk2 qt,$(MOZ_WIDGET_TOOLKIT)))
2004-06-17 23:01:11 +00:00
DIRS += gnomestripe
endif
ifneq (,$(filter os2,$(MOZ_WIDGET_TOOLKIT)))
DIRS += pmstripe/global
endif
ifdef MOZ_THEME_FASTSTRIPE
DIRS += faststripe/global
endif
2004-06-17 23:01:11 +00:00
endif
include $(topsrcdir)/config/rules.mk