1999-09-18 06:12:56 +04:00
|
|
|
#
|
2012-05-21 15:12:37 +04: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/.
|
1998-08-20 00:42:14 +04:00
|
|
|
|
2012-08-04 22:26:44 +04:00
|
|
|
DEPTH = @DEPTH@
|
1998-08-20 00:42:14 +04:00
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
1999-09-18 06:12:56 +04:00
|
|
|
VPATH = @srcdir@
|
1998-08-20 00:42:14 +04:00
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
2003-06-27 08:12:16 +04:00
|
|
|
MODULE = xpcom
|
2002-12-28 04:15:07 +03:00
|
|
|
GRE_MODULE = 1
|
|
|
|
|
2001-12-09 10:05:12 +03:00
|
|
|
DIRS = \
|
2011-11-06 16:32:25 +04:00
|
|
|
idl-parser \
|
2001-12-09 10:05:12 +03:00
|
|
|
typelib \
|
2003-08-15 03:50:21 +04:00
|
|
|
string \
|
2001-12-09 10:05:12 +03:00
|
|
|
glue \
|
|
|
|
base \
|
|
|
|
ds \
|
|
|
|
io \
|
|
|
|
components \
|
|
|
|
threads \
|
|
|
|
reflect \
|
2006-09-28 00:17:56 +04:00
|
|
|
system \
|
2010-06-12 00:13:26 +04:00
|
|
|
../chrome \
|
2001-12-09 10:05:12 +03:00
|
|
|
build \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
|
|
|
ifdef MOZ_DEBUG
|
|
|
|
DIRS += windbgdlg
|
|
|
|
endif
|
|
|
|
endif
|
1999-02-07 14:58:29 +03:00
|
|
|
|
|
|
|
ifdef ENABLE_TESTS
|
2004-12-09 22:28:35 +03:00
|
|
|
TOOL_DIRS += \
|
2002-05-08 10:11:48 +04:00
|
|
|
tests \
|
2001-01-13 08:26:02 +03:00
|
|
|
sample \
|
2000-03-02 16:29:03 +03:00
|
|
|
typelib/xpt/tests \
|
2012-01-11 20:28:21 +04:00
|
|
|
$(NULL)
|
2005-11-08 21:17:49 +03:00
|
|
|
|
|
|
|
# Can't build internal xptcall tests that use symbols which are not exported.
|
2011-05-23 20:54:47 +04:00
|
|
|
#TOOL_DIRS += \
|
|
|
|
# reflect/xptinfo/tests \
|
|
|
|
# reflect/xptcall/tests \
|
|
|
|
# $(NULL)
|
1999-07-17 07:38:08 +04:00
|
|
|
endif
|
|
|
|
|
2003-06-27 08:12:16 +04:00
|
|
|
# xpcom-config.h is generated by configure
|
|
|
|
SDK_HEADERS = xpcom-config.h
|
|
|
|
|
2008-10-25 00:29:33 +04:00
|
|
|
ifdef DEHYDRA_PATH
|
|
|
|
DIRS += analysis
|
|
|
|
endif
|
|
|
|
|
1998-08-20 00:42:14 +04:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
1999-09-18 06:12:56 +04:00
|
|
|
|