forked from Floorp-Projects/Floorp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.in
41 lines (32 loc) · 1.14 KB
/
Makefile.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# 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/.
DEPTH = @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)
# 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)
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
DIRS = pinstripe
else
DIRS = winstripe
ifneq (,$(filter gtk2 qt,$(MOZ_WIDGET_TOOLKIT)))
DIRS += gnomestripe
endif
ifneq (,$(filter os2,$(MOZ_WIDGET_TOOLKIT)))
DIRS += pmstripe/global
endif
ifdef MOZ_THEME_FASTSTRIPE
DIRS += faststripe/global
endif
endif
include $(topsrcdir)/config/rules.mk