1999-05-18 09:11:01 +00:00
|
|
|
#!nmake
|
|
|
|
#
|
|
|
|
# The contents of this file are subject to the Netscape Public License
|
|
|
|
# Version 1.0 (the "NPL"); you may not use this file except in
|
|
|
|
# compliance with the NPL. You may obtain a copy of the NPL at
|
|
|
|
# http://www.mozilla.org/NPL/
|
|
|
|
#
|
|
|
|
# Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
|
|
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
|
|
# for the specific language governing rights and limitations under the
|
|
|
|
# NPL.
|
|
|
|
#
|
|
|
|
# The Initial Developer of this code under the NPL is Netscape
|
|
|
|
# Communications Corporation. Portions created by Netscape are
|
|
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
|
|
# Reserved.
|
|
|
|
|
|
|
|
IGNORE_MANIFEST=1
|
|
|
|
|
|
|
|
DEPTH=..\..
|
|
|
|
MODULE = xpcom
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
## exports
|
|
|
|
|
|
|
|
EXPORTS = \
|
|
|
|
nsAgg.h \
|
|
|
|
nsIAllocator.h \
|
|
|
|
nsCOMPtr.h \
|
|
|
|
nsCom.h \
|
|
|
|
nsDebug.h \
|
|
|
|
nsError.h \
|
|
|
|
nsID.h \
|
|
|
|
nsIID.h \
|
|
|
|
nsIPtr.h \
|
|
|
|
nsISupportsUtils.h \
|
|
|
|
nsTraceRefcnt.h \
|
|
|
|
nscore.h \
|
|
|
|
$(NULL)
|
|
|
|
|
1999-06-03 20:06:49 +00:00
|
|
|
XPIDL_MODULE = xpcom_base
|
1999-05-26 01:38:36 +00:00
|
|
|
|
1999-05-18 09:11:01 +00:00
|
|
|
XPIDLSRCS = \
|
|
|
|
.\nsrootidl.idl \
|
|
|
|
.\nsISupports.idl \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
## library
|
|
|
|
|
|
|
|
#MAKE_OBJ_TYPE = DLL
|
|
|
|
#LIBNAME = .\$(OBJDIR)\xpcombase
|
|
|
|
#DLL = $(LIBNAME).dll
|
|
|
|
|
|
|
|
LIBRARY_NAME=xpcombase_s
|
|
|
|
|
|
|
|
LINCS = \
|
|
|
|
-I$(PUBLIC)\xpcom \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
LCFLAGS = -D_IMPL_NS_COM -DWIN32_LEAN_AND_MEAN
|
|
|
|
|
|
|
|
CPP_OBJS = \
|
|
|
|
.\$(OBJDIR)\nsDebug.obj \
|
|
|
|
.\$(OBJDIR)\nsAllocator.obj \
|
|
|
|
.\$(OBJDIR)\nsCOMPtr.obj \
|
|
|
|
.\$(OBJDIR)\nsID.obj \
|
|
|
|
.\$(OBJDIR)\nsTraceRefcnt.obj \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
include <$(DEPTH)\config\rules.mak>
|
|
|
|
|
|
|
|
#libs:: $(DLL)
|
|
|
|
# $(MAKE_INSTALL) $(LIBNAME).$(DLL_SUFFIX) $(DIST)\bin
|
|
|
|
# $(MAKE_INSTALL) $(LIBNAME).$(LIB_SUFFIX) $(DIST)\lib
|
|
|
|
|
|
|
|
libs:: $(LIBRARY)
|
|
|
|
$(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib
|
|
|
|
|
|
|
|
clobber::
|
|
|
|
rm -f $(DIST)\lib\$(LIBRARY_NAME).lib
|