1999-05-18 09:11:01 +00:00
|
|
|
#
|
1999-11-06 03:43:54 +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
|
|
|
#
|
1999-11-06 03:43:54 +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
|
|
|
#
|
1999-11-06 03:43:54 +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
|
1999-11-06 03:43:54 +00:00
|
|
|
# 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_io
|
|
|
|
LIBRARY_NAME = xpcomio_s
|
2002-12-28 01:15:07 +00:00
|
|
|
GRE_MODULE = 1
|
2002-04-30 20:57:35 +00:00
|
|
|
REQUIRES = string \
|
2001-09-18 13:41:47 +00:00
|
|
|
$(NULL)
|
1999-09-18 02:12:56 +00:00
|
|
|
|
2002-09-25 12:23:39 +00:00
|
|
|
ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
|
|
|
|
REQUIRES += macmorefiles
|
|
|
|
endif
|
|
|
|
|
1999-09-18 02:12:56 +00:00
|
|
|
CPPSRCS = \
|
2001-07-31 19:05:34 +00:00
|
|
|
nsAppFileLocationProvider.cpp \
|
|
|
|
nsBinaryStream.cpp \
|
|
|
|
nsByteArrayInputStream.cpp \
|
2000-01-24 21:28:28 +00:00
|
|
|
nsDirectoryService.cpp \
|
1999-09-18 02:12:56 +00:00
|
|
|
nsEscape.cpp \
|
2001-07-31 19:05:34 +00:00
|
|
|
nsFastLoadFile.cpp \
|
|
|
|
nsFastLoadService.cpp \
|
|
|
|
nsInputStreamTee.cpp \
|
|
|
|
nsLinebreakConverter.cpp \
|
|
|
|
nsLocalFileCommon.cpp \
|
2002-02-16 01:19:24 +00:00
|
|
|
nsMultiplexInputStream.cpp \
|
2003-01-18 02:15:14 +00:00
|
|
|
nsPipe3.cpp \
|
|
|
|
nsStreamUtils.cpp \
|
2001-07-31 19:05:34 +00:00
|
|
|
nsScriptableInputStream.cpp \
|
|
|
|
nsSegmentedBuffer.cpp \
|
2003-03-15 01:04:32 +00:00
|
|
|
SpecialSystemDirectory.cpp \
|
2000-01-24 21:28:28 +00:00
|
|
|
nsStorageStream.cpp \
|
2003-03-15 01:04:32 +00:00
|
|
|
nsStringStream.cpp \
|
2001-07-31 19:05:34 +00:00
|
|
|
nsUnicharInputStream.cpp \
|
2002-06-10 18:50:11 +00:00
|
|
|
nsNativeCharsetUtils.cpp \
|
1999-09-18 02:12:56 +00:00
|
|
|
$(NULL)
|
|
|
|
|
2000-05-02 01:18:46 +00:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),os2)
|
|
|
|
CPPSRCS += nsLocalFileOS2.cpp
|
2002-09-25 12:23:39 +00:00
|
|
|
else
|
|
|
|
ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
|
|
|
|
CPPSRCS += nsLocalFileOSX.cpp
|
2000-05-02 01:18:46 +00:00
|
|
|
else
|
2001-12-09 07:05:12 +00:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),windows)
|
|
|
|
CPPSRCS += nsLocalFileWin.cpp
|
|
|
|
else
|
2000-05-02 01:18:46 +00:00
|
|
|
CPPSRCS += nsLocalFileUnix.cpp
|
2001-12-09 07:05:12 +00:00
|
|
|
endif # windows
|
2002-09-25 12:23:39 +00:00
|
|
|
endif # mac
|
2001-12-09 07:05:12 +00:00
|
|
|
endif # OS2
|
2000-05-02 01:18:46 +00:00
|
|
|
|
1999-09-18 02:12:56 +00:00
|
|
|
EXPORTS = \
|
2001-07-31 19:05:34 +00:00
|
|
|
nsAppDirectoryServiceDefs.h \
|
2000-01-24 21:28:28 +00:00
|
|
|
nsDirectoryService.h \
|
2002-03-20 00:34:17 +00:00
|
|
|
nsDirectoryServiceUtils.h \
|
2001-07-31 19:05:34 +00:00
|
|
|
nsEscape.h \
|
|
|
|
nsFastLoadPtr.h \
|
|
|
|
nsFastLoadService.h \
|
1999-09-18 02:12:56 +00:00
|
|
|
nsIUnicharInputStream.h \
|
2001-07-31 19:05:34 +00:00
|
|
|
nsLinebreakConverter.h \
|
|
|
|
nsLocalFile.h \
|
2003-01-18 02:15:14 +00:00
|
|
|
nsMultiplexInputStream.h \
|
2000-08-10 04:53:37 +00:00
|
|
|
nsScriptableInputStream.h \
|
1999-12-07 00:05:37 +00:00
|
|
|
nsStorageStream.h \
|
2000-05-12 07:46:13 +00:00
|
|
|
nsStringIO.h \
|
2003-03-15 01:04:32 +00:00
|
|
|
nsStringStream.h \
|
2003-01-18 02:15:14 +00:00
|
|
|
nsStreamUtils.h \
|
2003-04-30 06:49:04 +00:00
|
|
|
nsNativeCharsetUtils.h \
|
1999-09-18 02:12:56 +00:00
|
|
|
$(NULL)
|
|
|
|
|
2000-05-02 01:18:46 +00:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),os2)
|
|
|
|
EXPORTS += nsLocalFileOS2.h
|
|
|
|
else
|
2002-09-25 12:23:39 +00:00
|
|
|
ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
|
|
|
|
EXPORTS += nsLocalFileOSX.h
|
|
|
|
else
|
2001-12-09 07:05:12 +00:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),windows)
|
|
|
|
EXPORTS += nsLocalFileWin.h
|
|
|
|
else
|
2000-05-02 01:18:46 +00:00
|
|
|
EXPORTS += nsLocalFileUnix.h
|
2001-12-09 07:05:12 +00:00
|
|
|
endif # windows
|
2002-09-25 12:23:39 +00:00
|
|
|
endif # mac
|
2001-12-09 07:05:12 +00:00
|
|
|
endif # os2
|
2000-05-02 01:18:46 +00:00
|
|
|
|
1999-09-18 02:12:56 +00:00
|
|
|
XPIDLSRCS = \
|
2000-01-24 21:28:28 +00:00
|
|
|
nsIBinaryInputStream.idl \
|
|
|
|
nsIBinaryOutputStream.idl \
|
2001-07-31 19:05:34 +00:00
|
|
|
nsIByteArrayInputStream.idl \
|
|
|
|
nsIFastLoadFileControl.idl \
|
|
|
|
nsIFastLoadService.idl \
|
|
|
|
nsIInputStreamTee.idl \
|
|
|
|
nsILineInputStream.idl \
|
2002-02-16 01:19:24 +00:00
|
|
|
nsIMultiplexInputStream.idl \
|
2001-07-31 19:05:34 +00:00
|
|
|
nsIObjectInputStream.idl \
|
|
|
|
nsIObjectOutputStream.idl \
|
2000-01-24 21:28:28 +00:00
|
|
|
nsIPipe.idl \
|
2001-07-31 19:05:34 +00:00
|
|
|
nsISeekableStream.idl \
|
2000-01-24 21:28:28 +00:00
|
|
|
nsIStorageStream.idl \
|
2001-11-22 00:08:14 +00:00
|
|
|
nsIStringStream.idl \
|
2003-03-15 01:04:32 +00:00
|
|
|
nsIStreamBufferAccess.idl \
|
2003-01-18 02:15:14 +00:00
|
|
|
nsIAsyncInputStream.idl \
|
|
|
|
nsIAsyncOutputStream.idl \
|
2001-07-31 19:05:34 +00:00
|
|
|
$(NULL)
|
1999-09-18 02:12:56 +00:00
|
|
|
|
2002-09-25 12:23:39 +00:00
|
|
|
ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
|
2003-03-15 01:04:32 +00:00
|
|
|
XPIDLSRCS += nsILocalFileMac.idl
|
2002-09-25 12:23:39 +00:00
|
|
|
endif
|
|
|
|
|
2002-02-25 23:20:01 +00:00
|
|
|
SDK_XPIDLSRCS = \
|
|
|
|
nsIDirectoryService.idl \
|
2002-09-13 21:39:07 +00:00
|
|
|
nsIFile.idl \
|
|
|
|
nsILocalFile.idl \
|
|
|
|
nsIInputStream.idl \
|
|
|
|
nsIOutputStream.idl \
|
|
|
|
nsIScriptableInputStream.idl \
|
2002-02-25 23:20:01 +00:00
|
|
|
$(NULL)
|
|
|
|
|
2002-09-27 13:07:01 +00:00
|
|
|
SDK_HEADERS = \
|
|
|
|
nsDirectoryServiceDefs.h \
|
|
|
|
$(NULL)
|
|
|
|
|
1999-09-18 02:12:56 +00:00
|
|
|
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.
|
2001-06-18 22:10:38 +00:00
|
|
|
FORCE_STATIC_LIB = 1
|
|
|
|
|
|
|
|
# Force use of PIC
|
|
|
|
FORCE_USE_PIC = 1
|
1999-05-18 09:11:01 +00:00
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
2002-07-30 21:30:05 +00:00
|
|
|
DEFINES += -D_IMPL_NS_COM
|
1999-09-18 02:12:56 +00:00
|
|
|
|
2003-07-03 20:55:23 +00:00
|
|
|
LOCAL_INCLUDES = -I..
|