gecko-dev/xpcom/ds/Makefile.in

127 lines
2.8 KiB
Makefile
Raw Normal View History

1999-05-18 09:11:01 +00:00
#
# The contents of this file are subject to the Netscape Public
# License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.mozilla.org/NPL/
1999-05-18 09:11:01 +00:00
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
1999-05-18 09:11:01 +00:00
#
# The Original Code is mozilla.org code.
#
# The Initial Developer of the Original Code is Netscape
1999-05-18 09:11:01 +00:00
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s):
1999-09-18 02:12:56 +00:00
#
1999-05-18 09:11:01 +00:00
1999-09-18 02:12:56 +00:00
DEPTH = ../..
1999-05-18 09:11:01 +00:00
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
1999-09-18 02:12:56 +00:00
MODULE = xpcom
XPIDL_MODULE = xpcom_ds
LIBRARY_NAME = xpcomds_s
REQUIRES = unicharutil string
1999-09-18 02:12:56 +00:00
CSRCS = \
pldhash.c \
plvector.c \
$(NULL)
1999-09-18 02:12:56 +00:00
CPPSRCS = \
nsArena.cpp \
nsAtomTable.cpp \
2000-03-31 09:19:17 +00:00
nsAtomService.cpp \
1999-09-18 02:12:56 +00:00
nsAVLTree.cpp \
nsByteBuffer.cpp \
nsCRT.cpp \
nsConjoiningEnumerator.cpp \
nsDeque.cpp \
nsEmptyEnumerator.cpp \
nsEnumeratorUtils.cpp \
nsFixedSizeAllocator.cpp \
1999-09-18 02:12:56 +00:00
nsHashtable.cpp \
nsHashtableEnumerator.cpp \
nsObserver.cpp \
nsObserverList.cpp \
nsObserverService.cpp \
nsProperties.cpp \
nsPersistentProperties.cpp \
1999-09-18 02:12:56 +00:00
nsQuickSort.cpp \
nsSizeOfHandler.cpp \
nsStaticNameTable.cpp \
nsStatistics.cpp \
1999-09-18 02:12:56 +00:00
nsSupportsArray.cpp \
nsSupportsArrayEnumerator.cpp \
nsSupportsPrimitives.cpp \
nsUnicharBuffer.cpp \
nsVoidArray.cpp \
nsVoidBTree.cpp \
nsTextFormatter.cpp \
1999-09-18 02:12:56 +00:00
$(NULL)
EXPORTS = \
nsAVLTree.h \
2000-03-31 09:19:17 +00:00
nsAtomService.h \
1999-09-18 02:12:56 +00:00
nsCppSharedAllocator.h \
nsCRT.h \
nsDeque.h \
nsEnumeratorUtils.h \
nsFixedSizeAllocator.h \
1999-09-18 02:12:56 +00:00
nsHashtable.h \
nsHashtableEnumerator.h \
nsIArena.h \
nsIByteBuffer.h \
nsIObserverList.h \
nsISimpleEnumerator.h \
nsISizeOfHandler.h \
nsIUnicharBuffer.h \
nsInt64.h \
nsQuickSort.h \
nsStaticNameTable.h \
nsStatistics.h \
nsSupportsArray.h \
1999-09-18 02:12:56 +00:00
nsSupportsPrimitives.h \
nsTime.h \
nsUnitConversion.h \
nsVector.h \
nsVoidArray.h \
nsVoidBTree.h \
pldhash.h \
1999-09-18 02:12:56 +00:00
plvector.h \
nsTextFormatter.h \
1999-09-18 02:12:56 +00:00
$(NULL)
XPIDLSRCS = \
nsIAtom.idl \
2000-03-31 09:19:17 +00:00
nsIAtomService.idl \
1999-09-18 02:12:56 +00:00
nsICollection.idl \
nsIEnumerator.idl \
nsIObserver.idl \
nsIObserverService.idl \
nsIProperties.idl \
1999-09-18 02:12:56 +00:00
nsISupportsArray.idl \
nsISupportsIterators.idl \
1999-09-18 02:12:56 +00:00
nsISupportsPrimitives.idl \
nsIPersistentProperties2.idl \
1999-09-18 02:12:56 +00:00
$(NULL)
EXPORTS := $(addprefix $(srcdir)/, $(EXPORTS))
1999-05-18 09:11:01 +00:00
# we don't want the shared lib, but we want to force the creation of a static lib.
override NO_SHARED_LIB=1
override NO_STATIC_LIB=
include $(topsrcdir)/config/rules.mk
1999-09-18 02:12:56 +00:00
DEFINES += -D_IMPL_NS_COM -D_IMPL_NS_BASE