1998-12-24 06:20:35 +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/
|
1998-12-24 06:20:35 +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.
|
1998-12-24 06:20:35 +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
|
1998-12-24 06:20:35 +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-08-03 21:40:56 +00:00
|
|
|
#
|
1998-12-24 06:20:35 +00:00
|
|
|
|
1999-08-03 21:40:56 +00:00
|
|
|
DEPTH = ../..
|
1998-12-24 06:20:35 +00:00
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
1999-08-03 21:40:56 +00:00
|
|
|
MODULE = rdf
|
|
|
|
LIBRARY_NAME = rdf
|
2001-04-28 19:48:12 +00:00
|
|
|
EXPORT_LIBRARY = 1
|
1999-08-03 21:40:56 +00:00
|
|
|
IS_COMPONENT = 1
|
2001-06-20 20:21:49 +00:00
|
|
|
MODULE_NAME = nsRDFModule
|
2001-02-22 03:01:34 +00:00
|
|
|
EXTRA_DSO_LIBS =
|
2001-09-18 13:41:47 +00:00
|
|
|
REQUIRES = xpcom \
|
|
|
|
string \
|
|
|
|
content \
|
|
|
|
htmlparser \
|
|
|
|
necko \
|
|
|
|
$(NULL)
|
1998-12-24 06:20:35 +00:00
|
|
|
|
1999-08-03 21:40:56 +00:00
|
|
|
CPPSRCS = \
|
1999-09-30 21:37:14 +00:00
|
|
|
nsRDFModule.cpp \
|
1999-08-03 21:40:56 +00:00
|
|
|
$(NULL)
|
1998-12-24 06:20:35 +00:00
|
|
|
|
1999-08-03 21:40:56 +00:00
|
|
|
EXPORTS = nsRDFCID.h
|
|
|
|
EXPORTS := $(addprefix $(srcdir)/, $(EXPORTS))
|
1998-12-24 06:20:35 +00:00
|
|
|
|
1998-12-24 06:39:28 +00:00
|
|
|
# XXX Note dependencies on implementation headers for factory functions
|
|
|
|
|
1999-08-03 21:40:56 +00:00
|
|
|
SHARED_LIBRARY_LIBS = \
|
2000-04-05 06:08:04 +00:00
|
|
|
$(DIST)/lib/librdfbase_s.$(LIB_SUFFIX) \
|
|
|
|
$(DIST)/lib/librdfdatasource_s.$(LIB_SUFFIX) \
|
|
|
|
$(DIST)/lib/librdfutil_s.$(LIB_SUFFIX) \
|
1999-08-03 21:40:56 +00:00
|
|
|
$(NULL)
|
1999-02-24 04:44:41 +00:00
|
|
|
|
1999-08-03 21:40:56 +00:00
|
|
|
EXTRA_DSO_LDOPTS = \
|
1999-08-22 11:05:45 +00:00
|
|
|
-L$(DIST)/bin \
|
2000-04-05 06:08:04 +00:00
|
|
|
$(EXTRA_DSO_LIBS) \
|
1999-11-16 06:02:31 +00:00
|
|
|
$(MOZ_COMPONENT_LIBS) \
|
2001-10-22 20:44:02 +00:00
|
|
|
$(MOZ_UNICHARUTIL_LIBS) \
|
1999-08-22 11:05:45 +00:00
|
|
|
$(NULL)
|
1998-12-24 06:20:35 +00:00
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
1999-01-12 19:41:44 +00:00
|
|
|
|
1999-08-03 21:40:56 +00:00
|
|
|
INCLUDES += \
|
|
|
|
-I$(srcdir)/../base/src \
|
|
|
|
-I$(srcdir)/../content/src \
|
|
|
|
-I$(srcdir)/../datasource/src \
|
|
|
|
$(NULL)
|
1999-03-31 04:54:42 +00:00
|
|
|
|