forked from Floorp-Projects/Floorp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.in
60 lines (49 loc) · 1004 Bytes
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#
# 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
MODULE = xpcom
GRE_MODULE = 1
DIRS = \
idl-parser \
typelib \
string \
glue \
base \
ds \
io \
components \
threads \
reflect \
system \
../chrome \
build \
$(NULL)
ifeq ($(OS_ARCH),WINNT)
ifdef MOZ_DEBUG
DIRS += windbgdlg
endif
endif
ifdef ENABLE_TESTS
TOOL_DIRS += \
tests \
sample \
typelib/xpt/tests \
$(NULL)
# Can't build internal xptcall tests that use symbols which are not exported.
#TOOL_DIRS += \
# reflect/xptinfo/tests \
# reflect/xptcall/tests \
# $(NULL)
endif
# xpcom-config.h is generated by configure
SDK_HEADERS = xpcom-config.h
ifdef DEHYDRA_PATH
DIRS += analysis
endif
include $(topsrcdir)/config/rules.mk