зеркало из https://github.com/mozilla/gecko-dev.git
98 строки
2.1 KiB
Makefile
98 строки
2.1 KiB
Makefile
|
#
|
||
|
# 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
|
||
|
LIBRARY_NAME = xpcom_obsolete
|
||
|
|
||
|
# Do not set EXPORT_LIBRARY as we do not want xpcom in the static libs list
|
||
|
#EXPORT_LIBRARY = 1
|
||
|
GRE_MODULE = 1
|
||
|
|
||
|
REQUIRES = xpcom \
|
||
|
string \
|
||
|
$(NULL)
|
||
|
|
||
|
# pull in MoreFiles for MacOSX
|
||
|
ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
|
||
|
REQUIRES += macmorefiles
|
||
|
endif
|
||
|
|
||
|
CPPSRCS = \
|
||
|
nsFileSpec.cpp \
|
||
|
nsFileSpecImpl.cpp \
|
||
|
nsFileStream.cpp \
|
||
|
nsIFileStream.cpp \
|
||
|
nsSpecialSystemDirectory.cpp \
|
||
|
$(NULL)
|
||
|
|
||
|
EXPORTS = \
|
||
|
nsFileSpec.h \
|
||
|
nsFileStream.h \
|
||
|
nsIFileStream.h \
|
||
|
nsSpecialSystemDirectory.h \
|
||
|
$(NULL)
|
||
|
|
||
|
XPIDLSRCS = nsIFileSpec.idl
|
||
|
|
||
|
LOCAL_INCLUDES = \
|
||
|
-I$(srcdir)/../io \
|
||
|
$(NULL)
|
||
|
|
||
|
# Force use of PIC
|
||
|
FORCE_USE_PIC = 1
|
||
|
|
||
|
FORCE_SHARED_LIB = 1
|
||
|
|
||
|
include $(topsrcdir)/config/rules.mk
|
||
|
|
||
|
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
|
||
|
|