gecko-dev/xpcom/obsolete/Makefile.in

112 lines
2.2 KiB
Makefile
Raw Normal View History

#
# 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/
#
# 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.
#
# The Original Code is mozilla.org code.
#
# The Initial Developer of the Original Code is Netscape
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s):
#
DEPTH = ../..
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
MODULE = xpcom_obsolete
2003-03-15 01:57:22 +00:00
LIBRARY_NAME = xpcom_compat
2003-03-15 01:57:22 +00:00
EXPORT_LIBRARY = 1
GRE_MODULE = 1
2003-03-15 01:57:22 +00:00
DIRS = component
REQUIRES = xpcom \
2003-03-15 01:57:22 +00:00
mozreg \
libreg \
string \
$(NULL)
# pull in MoreFiles for MacOSX
ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
REQUIRES += macmorefiles
endif
CPPSRCS = \
nsFileSpec.cpp \
nsFileStream.cpp \
nsIFileStream.cpp \
2003-03-15 01:57:22 +00:00
nsFileSpecImpl.cpp \
nsSpecialSystemDirectory.cpp \
$(NULL)
2003-03-15 01:57:22 +00:00
ifeq ($(OS_ARCH),WINNT)
CPPSRCS += dlldeps.cpp
endif
EXPORTS = \
nsFileSpec.h \
nsFileStream.h \
nsIFileStream.h \
nsSpecialSystemDirectory.h \
2003-03-15 01:57:22 +00:00
nsIRegistryUtils.h \
$(NULL)
LOCAL_INCLUDES = \
-I$(srcdir)/../io \
$(NULL)
2003-03-15 01:57:22 +00:00
XPIDLSRCS = nsIFileSpec.idl \
nsIRegistry.idl \
$(NULL)
# Force use of PIC
FORCE_USE_PIC = 1
FORCE_SHARED_LIB = 1
2003-03-15 01:57:22 +00:00
SHARED_LIBRARY_LIBS = \
$(DIST)/lib/$(LIB_PREFIX)mozreg_s.$(LIB_SUFFIX) \
$(NULL)
include $(topsrcdir)/config/rules.mk
2003-03-15 01:57:22 +00:00
DEFINES += -D_IMPL_NS_COM
EXTRA_DSO_LDOPTS += $(MOZ_COMPONENT_LIBS)
ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
CXXFLAGS += $(TK_CFLAGS)
EXTRA_DSO_LDOPTS += $(TK_LIBS)
endif
ifeq ($(OS_ARCH),BeOS)
EXTRA_DSO_LDOPTS += -lbe
endif
ifeq ($(OS_ARCH),WINNT)
EXTRA_DSO_LDOPTS += shell32.lib ole32.lib
ifneq (,$(MOZ_DEBUG)$(NS_TRACE_MALLOC))
EXTRA_DSO_LDOPTS += imagehlp.lib
endif
endif # WINNT
ifeq ($(OS_ARCH), Linux)
DEFINES += -D_BSD_SOURCE
endif