gecko-dev/xpcom/io/Makefile.in

116 lines
2.7 KiB
Makefile
Raw Normal View History

1999-05-18 09:11:01 +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
#
# 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
#
# 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
# 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
REQUIRES = xpcom uconv unicharutil
CPPSRCS = \
2000-01-24 21:28:28 +00:00
nsDirectoryService.cpp \
1999-09-18 02:12:56 +00:00
nsEscape.cpp \
nsLinebreakConverter.cpp \
nsLocalFileCommon.cpp \
1999-09-18 02:12:56 +00:00
nsFileSpec.cpp \
nsFileSpecStreaming.cpp \
nsFileStream.cpp \
nsFileSpecImpl.cpp \
nsIFileStream.cpp \
nsIStringStream.cpp \
nsSegmentedBuffer.cpp \
nsPipe2.cpp \
nsSpecialSystemDirectory.cpp \
nsUnicharInputStream.cpp \
2000-01-24 21:28:28 +00:00
nsBinaryStream.cpp \
nsStorageStream.cpp \
nsScriptableInputStream.cpp \
nsByteArrayInputStream.cpp \
1999-09-18 02:12:56 +00:00
$(NULL)
ifeq ($(MOZ_WIDGET_TOOLKIT),os2)
CPPSRCS += nsLocalFileOS2.cpp
else
CPPSRCS += nsLocalFileUnix.cpp
endif
1999-09-18 02:12:56 +00:00
EXPORTS = \
nsEscape.h \
2000-01-24 21:28:28 +00:00
nsDirectoryService.h \
nsLocalFile.h \
nsLinebreakConverter.h \
1999-09-18 02:12:56 +00:00
nsFileSpec.h \
nsFileSpecStreaming.h \
nsFileStream.h \
nsIFileStream.h \
nsIStringStream.h \
nsIUnicharInputStream.h \
nsSpecialSystemDirectory.h \
1999-12-07 00:05:37 +00:00
nsScriptableInputStream.h \
nsStorageStream.h \
1999-09-18 02:12:56 +00:00
$(NULL)
ifeq ($(MOZ_WIDGET_TOOLKIT),os2)
EXPORTS += nsLocalFileOS2.h
else
EXPORTS += nsLocalFileUnix.h
endif
1999-09-18 02:12:56 +00:00
XPIDLSRCS = \
nsIBaseStream.idl \
2000-01-24 21:28:28 +00:00
nsIBinaryInputStream.idl \
nsIBinaryOutputStream.idl \
1999-09-18 02:12:56 +00:00
nsIBufferInputStream.idl \
nsIBufferOutputStream.idl \
2000-01-24 21:28:28 +00:00
nsIFile.idl \
nsIFileSpec.idl \
nsIInputStream.idl \
nsILocalFile.idl \
nsIOutputStream.idl \
nsIPipe.idl \
nsIScriptableInputStream.idl \
nsIStorageStream.idl \
nsIDirectoryService.idl \
nsIByteArrayInputStream.idl \
$(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.
override NO_SHARED_LIB=1
override NO_STATIC_LIB=
include $(topsrcdir)/config/rules.mk
1999-09-18 02:12:56 +00:00
DEFINES += -D_IMPL_NS_COM -D_IMPL_NS_BASE
ifeq ($(OS_ARCH), Linux)
DEFINES += -D_BSD_SOURCE
endif