1998-12-24 09:20:35 +03:00
|
|
|
#!gmake
|
|
|
|
#
|
1999-11-06 06:43:54 +03: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 09:20:35 +03:00
|
|
|
#
|
1999-11-06 06:43:54 +03: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 09:20:35 +03:00
|
|
|
#
|
1999-11-06 06:43:54 +03:00
|
|
|
# The Original Code is mozilla.org code.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is Netscape
|
1998-12-24 09:20:35 +03:00
|
|
|
# Communications Corporation. Portions created by Netscape are
|
1999-11-06 06:43:54 +03:00
|
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
# Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
1998-12-24 09:20:35 +03:00
|
|
|
|
|
|
|
DEPTH=..\..
|
1999-07-29 07:46:59 +04:00
|
|
|
include <$(DEPTH)/config/config.mak>
|
1998-12-24 09:20:35 +03:00
|
|
|
MODULE=rdf
|
|
|
|
|
|
|
|
MAKE_OBJ_TYPE=DLL
|
|
|
|
DLLNAME=rdf
|
1999-06-15 07:21:49 +04:00
|
|
|
MAPFILE=$(DLLNAME).map
|
1998-12-24 09:20:35 +03:00
|
|
|
DLL=.\$(OBJDIR)\$(DLLNAME).dll
|
|
|
|
|
|
|
|
EXPORTS=\
|
|
|
|
nsRDFCID.h \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
CPP_OBJS=\
|
1999-10-01 01:37:14 +04:00
|
|
|
.\$(OBJDIR)\nsRDFModule.obj \
|
1998-12-24 09:20:35 +03:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
LLIBS=\
|
|
|
|
$(DIST)\lib\rdfbase_s.lib \
|
1999-02-24 12:03:54 +03:00
|
|
|
$(DIST)\lib\rdfutil_s.lib \
|
1998-12-24 09:20:35 +03:00
|
|
|
$(DIST)\lib\rdfcontent_s.lib \
|
|
|
|
$(DIST)\lib\rdfdatasource_s.lib \
|
1999-05-26 05:38:36 +04:00
|
|
|
$(DIST)\lib\xpcom.lib \
|
1999-10-10 05:32:59 +04:00
|
|
|
$(DIST)\lib\gkgfxwin.lib \
|
1999-07-17 19:52:01 +04:00
|
|
|
$(DIST)\lib\timer_s.lib \
|
1999-02-24 12:03:54 +03:00
|
|
|
$(DIST)\lib\jsdom.lib \
|
|
|
|
$(DIST)\lib\js3250.lib \
|
1998-12-24 09:20:35 +03:00
|
|
|
$(LIBNSPR)
|
|
|
|
|
1998-12-24 09:39:28 +03:00
|
|
|
# XXX Note dependencies on implementation dirs for factory methods.
|
|
|
|
|
1999-06-04 00:22:54 +04:00
|
|
|
LINCS= -I$(DEPTH)\rdf\base\src \
|
1998-12-24 09:39:28 +03:00
|
|
|
-I$(DEPTH)\rdf\content\src \
|
|
|
|
-I$(DEPTH)\rdf\datasource\src \
|
1998-12-24 09:20:35 +03:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
include <$(DEPTH)\config\rules.mak>
|
|
|
|
|
|
|
|
install:: $(DLL)
|
1999-03-06 12:04:53 +03:00
|
|
|
$(MAKE_INSTALL) .\$(OBJDIR)\$(DLLNAME).dll $(DIST)\bin\components
|
1998-12-24 09:20:35 +03:00
|
|
|
$(MAKE_INSTALL) .\$(OBJDIR)\$(DLLNAME).lib $(DIST)\lib
|