2001-02-04 03:32:43 +03:00
|
|
|
#!nmake
|
|
|
|
#
|
|
|
|
# The contents of this file are subject to the Mozilla 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/MPL/
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
# The Original Code is mozilla.org code.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is Netscape
|
|
|
|
# Communications, Inc. Portions created by Netscape are
|
|
|
|
# Copyright (C) 2001, Mozilla. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
|
|
|
|
|
|
|
DEPTH=..\..\..
|
|
|
|
|
2001-09-13 00:32:40 +04:00
|
|
|
MODULE=embedcomponents
|
2001-09-19 02:01:13 +04:00
|
|
|
REQUIRES = js \
|
|
|
|
xpcom \
|
|
|
|
string \
|
|
|
|
windowwatcher \
|
2001-11-01 17:39:26 +03:00
|
|
|
webbrowserpersist \
|
2001-09-19 02:01:13 +04:00
|
|
|
jsconsole \
|
|
|
|
find \
|
|
|
|
embed_base \
|
|
|
|
dom \
|
|
|
|
txtsvc \
|
2001-11-01 17:39:26 +03:00
|
|
|
mimetype \
|
|
|
|
necko \
|
|
|
|
content \
|
|
|
|
uriloader \
|
2002-02-02 08:13:56 +03:00
|
|
|
commandhandler \
|
|
|
|
content_xul \
|
2001-09-19 02:01:13 +04:00
|
|
|
$(NULL)
|
2001-11-01 17:39:26 +03:00
|
|
|
|
2001-06-21 00:21:49 +04:00
|
|
|
include <$(DEPTH)\config\config.mak>
|
|
|
|
|
|
|
|
LIBRARY_NAME=embedcomponents
|
|
|
|
MODULE_NAME=embedcomponents
|
2001-02-04 03:32:43 +03:00
|
|
|
|
|
|
|
LCFLAGS = -DWIN32_LEAN_AND_MEAN
|
|
|
|
|
|
|
|
CPP_OBJS = \
|
|
|
|
.\$(OBJDIR)\nsModule.obj \
|
|
|
|
$(NULL)
|
|
|
|
|
2001-06-21 00:21:49 +04:00
|
|
|
SUB_LIBRARIES = \
|
2001-02-04 03:32:43 +03:00
|
|
|
$(DIST)\lib\windowwatcher_s.lib \
|
2001-05-11 05:52:11 +04:00
|
|
|
$(DIST)\lib\jsconsole_s.lib \
|
2001-03-20 00:57:57 +03:00
|
|
|
$(DIST)\lib\appstartupnotifier_s.lib \
|
2001-04-28 01:11:03 +04:00
|
|
|
$(DIST)\lib\find_s.lib \
|
2001-11-01 17:39:26 +03:00
|
|
|
$(DIST)\lib\webbrowserpersist_s.lib \
|
2002-02-02 08:13:56 +03:00
|
|
|
$(DIST)\lib\commandhandler_s.lib \
|
2001-02-04 03:32:43 +03:00
|
|
|
$(NULL)
|
|
|
|
|
2001-06-21 00:21:49 +04:00
|
|
|
LLIBS = \
|
|
|
|
$(LIBNSPR) \
|
|
|
|
$(DIST)\lib\js3250.lib \
|
2002-01-16 10:05:40 +03:00
|
|
|
$(DIST)\lib\unicharutil_s.lib \
|
2001-06-21 00:21:49 +04:00
|
|
|
$(DIST)\lib\xpcom.lib \
|
|
|
|
$(NULL)
|
|
|
|
|
2001-02-04 03:32:43 +03:00
|
|
|
INCS = $(INCS) \
|
|
|
|
-I$(DEPTH)\embedding\components\windowwatcher\src \
|
2001-05-11 05:52:11 +04:00
|
|
|
-I$(DEPTH)\embedding\components\jsconsole\src \
|
2001-03-20 00:57:57 +03:00
|
|
|
-I$(DEPTH)\embedding\components\appstartup\src \
|
2001-04-28 01:11:03 +04:00
|
|
|
-I$(DEPTH)\embedding\components\find\src \
|
2001-11-01 17:39:26 +03:00
|
|
|
-I$(DEPTH)\embedding\components\webbrowserpersist\src \
|
2002-02-02 08:13:56 +03:00
|
|
|
-I$(DEPTH)\embedding\components\commandhandler\src \
|
2001-02-04 03:32:43 +03:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
include <$(DEPTH)\config\rules.mak>
|