gecko-dev/xpcom/io/Makefile.in

144 строки
3.3 KiB
Makefile
Исходник Обычный вид История

1999-05-18 13:11:01 +04: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 13:11:01 +04: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 13:11:01 +04:00
#
# The Original Code is mozilla.org code.
#
# The Initial Developer of the Original Code is Netscape
1999-05-18 13:11:01 +04:00
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s):
1999-09-18 06:12:56 +04:00
#
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
1999-09-18 06:12:56 +04:00
MODULE = xpcom
XPIDL_MODULE = xpcom_io
LIBRARY_NAME = xpcomio_s
REQUIRES = uconv \
string \
necko \
$(NULL)
1999-09-18 06:12:56 +04:00
CPPSRCS = \
nsAppFileLocationProvider.cpp \
nsBinaryStream.cpp \
nsByteArrayInputStream.cpp \
2000-01-25 00:28:28 +03:00
nsDirectoryService.cpp \
1999-09-18 06:12:56 +04:00
nsEscape.cpp \
nsFastLoadFile.cpp \
nsFastLoadService.cpp \
1999-09-18 06:12:56 +04:00
nsFileSpec.cpp \
nsFileSpecImpl.cpp \
1999-09-18 06:12:56 +04:00
nsFileSpecStreaming.cpp \
nsFileStream.cpp \
nsIFileStream.cpp \
nsStringStream.cpp \
nsInputStreamTee.cpp \
nsLinebreakConverter.cpp \
nsLocalFileCommon.cpp \
nsLocalFileUnicode.cpp \
1999-09-18 06:12:56 +04:00
nsPipe2.cpp \
nsScriptableInputStream.cpp \
nsSegmentedBuffer.cpp \
1999-09-18 06:12:56 +04:00
nsSpecialSystemDirectory.cpp \
2000-01-25 00:28:28 +03:00
nsStorageStream.cpp \
nsUnicharInputStream.cpp \
1999-09-18 06:12:56 +04:00
$(NULL)
ifeq ($(MOZ_WIDGET_TOOLKIT),os2)
CPPSRCS += nsLocalFileOS2.cpp
#else
#ifeq ($(MOZ_WIDGET_TOOLKIT),mac)
#CPPSRCS += nsLocalFileMac.cpp
#CSRCS += macDirectoryCopy.c
else
CPPSRCS += nsLocalFileUnix.cpp
endif
#endif
1999-09-18 06:12:56 +04:00
EXPORTS = \
nsAppDirectoryServiceDefs.h \
2000-01-25 00:28:28 +03:00
nsDirectoryService.h \
nsDirectoryServiceDefs.h \
nsEscape.h \
nsFastLoadPtr.h \
nsFastLoadService.h \
1999-09-18 06:12:56 +04:00
nsFileSpec.h \
nsFileSpecStreaming.h \
nsFileStream.h \
nsIFileStream.h \
nsIUnicharInputStream.h \
nsLinebreakConverter.h \
nsLocalFile.h \
nsScriptableInputStream.h \
nsSpecialSystemDirectory.h \
1999-12-07 03:05:37 +03:00
nsStorageStream.h \
nsStringIO.h \
1999-09-18 06:12:56 +04:00
$(NULL)
ifeq ($(MOZ_WIDGET_TOOLKIT),os2)
EXPORTS += nsLocalFileOS2.h
else
#ifeq ($(MOZ_WIDGET_TOOLKIT),mac)
#EXPORTS += nsLocalFileMac.h nsILocalFileMac.h
#else
EXPORTS += nsLocalFileUnix.h
endif
#endif
1999-09-18 06:12:56 +04:00
XPIDLSRCS = \
2000-01-25 00:28:28 +03:00
nsIBinaryInputStream.idl \
nsIBinaryOutputStream.idl \
nsIByteArrayInputStream.idl \
nsIDirectoryService.idl \
nsIFastLoadFileControl.idl \
nsIFastLoadService.idl \
2000-01-25 00:28:28 +03:00
nsIFile.idl \
nsIFileSpec.idl \
nsIInputStream.idl \
nsIInputStreamTee.idl \
nsILineInputStream.idl \
2000-01-25 00:28:28 +03:00
nsILocalFile.idl \
nsIObjectInputStream.idl \
nsIObjectOutputStream.idl \
2000-01-25 00:28:28 +03:00
nsIOutputStream.idl \
nsIPipe.idl \
nsIScriptableInputStream.idl \
nsISeekableStream.idl \
2000-01-25 00:28:28 +03:00
nsIStorageStream.idl \
nsIStreamBufferAccess.idl \
nsIStringStream.idl \
$(NULL)
1999-09-18 06:12:56 +04:00
EXPORTS := $(addprefix $(srcdir)/, $(EXPORTS))
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
# Force use of PIC
FORCE_USE_PIC = 1
1999-05-18 13:11:01 +04:00
include $(topsrcdir)/config/rules.mk
1999-09-18 06:12:56 +04:00
DEFINES += -D_IMPL_NS_COM -D_IMPL_NS_BASE
ifeq ($(OS_ARCH), Linux)
DEFINES += -D_BSD_SOURCE
endif