1998-12-24 09:20:35 +03:00
|
|
|
#
|
|
|
|
# The contents of this file are subject to the Netscape Public License
|
|
|
|
# Version 1.0 (the "NPL"); you may not use this file except in
|
|
|
|
# compliance with the NPL. You may obtain a copy of the NPL at
|
|
|
|
# http://www.mozilla.org/NPL/
|
|
|
|
#
|
|
|
|
# Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
|
|
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
|
|
# for the specific language governing rights and limitations under the
|
|
|
|
# NPL.
|
|
|
|
#
|
|
|
|
# The Initial Developer of this code under the NPL is Netscape
|
|
|
|
# Communications Corporation. Portions created by Netscape are
|
|
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
|
|
# Reserved.
|
1999-08-04 01:40:56 +04:00
|
|
|
#
|
1998-12-24 09:20:35 +03:00
|
|
|
|
1999-08-04 01:40:56 +04:00
|
|
|
DEPTH = ../..
|
1998-12-24 09:20:35 +03:00
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
1999-08-04 01:40:56 +04:00
|
|
|
MODULE = rdf
|
|
|
|
LIBRARY_NAME = rdf
|
|
|
|
IS_COMPONENT = 1
|
1998-12-24 09:20:35 +03:00
|
|
|
|
1999-08-04 01:40:56 +04:00
|
|
|
REQUIRES = dom js netlib rdf raptor xpcom
|
1998-12-24 09:20:35 +03:00
|
|
|
|
1999-08-04 01:40:56 +04:00
|
|
|
CPPSRCS = \
|
1999-10-01 01:37:14 +04:00
|
|
|
nsRDFModule.cpp \
|
1999-08-04 01:40:56 +04:00
|
|
|
$(NULL)
|
1998-12-24 09:20:35 +03:00
|
|
|
|
1999-08-04 01:40:56 +04:00
|
|
|
EXPORTS = nsRDFCID.h
|
|
|
|
EXPORTS := $(addprefix $(srcdir)/, $(EXPORTS))
|
1998-12-24 09:20:35 +03:00
|
|
|
|
1998-12-24 09:39:28 +03:00
|
|
|
# XXX Note dependencies on implementation headers for factory functions
|
|
|
|
|
1999-08-04 01:40:56 +04:00
|
|
|
SHARED_LIBRARY_LIBS = \
|
|
|
|
$(DIST)/lib/librdfbase_s.a \
|
|
|
|
$(DIST)/lib/librdfcontent_s.a \
|
|
|
|
$(DIST)/lib/librdfdatasource_s.a \
|
|
|
|
$(DIST)/lib/librdfutil_s.a \
|
|
|
|
$(NULL)
|
1999-02-24 07:44:41 +03:00
|
|
|
|
1999-08-04 01:40:56 +04:00
|
|
|
EXTRA_DSO_LDOPTS = \
|
|
|
|
$(MKSHLIB_FORCE_ALL) \
|
|
|
|
$(SHARED_LIBRARY_LIBS) \
|
1999-08-22 15:05:45 +04:00
|
|
|
$(MKSHLIB_UNFORCE_ALL) \
|
1999-09-15 06:15:11 +04:00
|
|
|
$(MOZ_NECKO_UTIL_LIBS) \
|
1999-09-10 04:00:03 +04:00
|
|
|
$(MOZ_TIMER_LIBS) \
|
1999-08-22 15:05:45 +04:00
|
|
|
-L$(DIST)/bin \
|
|
|
|
-ljsdom \
|
|
|
|
$(NULL)
|
1998-12-24 09:20:35 +03:00
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
1999-01-12 22:41:44 +03:00
|
|
|
|
1999-08-04 01:40:56 +04:00
|
|
|
INCLUDES += \
|
|
|
|
-I$(srcdir)/../base/src \
|
|
|
|
-I$(srcdir)/../content/src \
|
|
|
|
-I$(srcdir)/../datasource/src \
|
|
|
|
$(NULL)
|
1999-03-31 08:54:42 +04:00
|
|
|
|
1999-03-26 00:32:26 +03:00
|
|
|
$(LIBRARY) $(SHARED_LIBRARY): $(SHARED_LIBRARY_LIBS) Makefile
|
1999-02-24 07:44:41 +03:00
|
|
|
|