gecko-dev/xpcom/Makefile.in

61 строка
999 B
Makefile
Исходник Обычный вид История

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
1999-09-18 06:12:56 +04:00
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
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
1999-02-07 14:58:29 +03:00
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)
1999-07-17 07:38:08 +04:00
endif
# xpcom-config.h is generated by configure
SDK_HEADERS = xpcom-config.h
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