pjs/xpcom/threads/Makefile.in

71 строка
1.3 KiB
Makefile
Исходник Обычный вид История

1999-05-18 13:11:01 +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/.
1999-05-18 13:11:01 +04:00
1999-09-18 06:12:56 +04:00
DEPTH = ../..
1999-05-18 13:11:01 +04:00
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
MODULE = xpcom
XPIDL_MODULE = xpcom_threads
1999-09-18 06:12:56 +04:00
LIBRARY_NAME = xpcomthreads_s
GRE_MODULE = 1
MOZILLA_INTERNAL_API = 1
LIBXUL_LIBRARY = 1
EXPORTS_NAMESPACES = mozilla
1999-05-18 13:11:01 +04:00
1999-09-18 06:12:56 +04:00
CPPSRCS = \
nsEventQueue.cpp \
nsEnvironment.cpp \
1999-09-18 06:12:56 +04:00
nsThread.cpp \
nsThreadManager.cpp \
nsThreadPool.cpp \
nsProcessCommon.cpp \
nsTimerImpl.cpp \
TimerThread.cpp \
HangMonitor.cpp \
LazyIdleThread.cpp \
1999-09-18 06:12:56 +04:00
$(NULL)
1999-05-18 13:11:01 +04:00
1999-09-18 06:12:56 +04:00
EXPORTS = \
nsThread.h \
nsProcess.h \
nsEventQueue.h \
$(NULL)
1999-05-18 13:11:01 +04:00
EXPORTS_mozilla = \
HangMonitor.h \
LazyIdleThread.h \
$(NULL)
1999-09-18 06:12:56 +04:00
XPIDLSRCS = \
nsIEventTarget.idl \
1999-09-18 06:12:56 +04:00
nsIThread.idl \
nsIThreadInternal.idl \
nsIThreadManager.idl \
nsIThreadPool.idl \
nsITimer.idl \
1999-09-18 06:12:56 +04:00
nsIRunnable.idl \
nsIEnvironment.idl \
nsIProcess.idl \
2005-02-22 00:08:46 +03:00
nsISupportsPriority.idl \
1999-09-18 06:12:56 +04:00
$(NULL)
1999-05-18 13:11:01 +04:00
1999-09-18 06:12:56 +04:00
EXPORTS := $(addprefix $(srcdir)/, $(EXPORTS))
1999-05-18 13:11:01 +04:00
1999-09-18 06:12:56 +04:00
LOCAL_INCLUDES = -I$(srcdir)/../components
1999-05-18 13:11:01 +04:00
# we don't want the shared lib, but we want to force the creation of a static lib.
FORCE_STATIC_LIB = 1
1999-05-18 13:11:01 +04:00
include $(topsrcdir)/config/rules.mk
DEFINES += -D_IMPL_NS_COM
1999-09-18 06:12:56 +04:00