1999-02-11 04:01:47 +03:00
|
|
|
#
|
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/
|
1999-02-11 04:01:47 +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.
|
1999-02-11 04:01:47 +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
|
1999-02-11 04:01:47 +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):
|
1999-07-28 03:27:44 +04:00
|
|
|
#
|
1999-02-11 04:01:47 +03:00
|
|
|
|
1999-07-02 07:25:32 +04:00
|
|
|
DEPTH = ../../..
|
1999-02-11 04:01:47 +03:00
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
1999-09-15 03:05:06 +04:00
|
|
|
VPATH = @srcdir@
|
1999-02-11 04:01:47 +03:00
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
1999-07-02 07:25:32 +04:00
|
|
|
MODULE = msgcompose
|
|
|
|
LIBRARY_NAME = msgcompose
|
2001-06-21 00:21:49 +04:00
|
|
|
META_COMPONENT = mail
|
2001-04-28 23:48:12 +04:00
|
|
|
EXPORT_LIBRARY = 1
|
2001-01-18 18:35:00 +03:00
|
|
|
SHORT_LIBNAME = msgcompo
|
1999-07-02 07:25:32 +04:00
|
|
|
IS_COMPONENT = 1
|
2001-06-21 00:21:49 +04:00
|
|
|
MODULE_NAME = nsMsgComposeModule
|
2002-01-16 08:10:09 +03:00
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
|
|
|
XPIDL_MODULE = msgcompo
|
|
|
|
endif
|
2001-09-18 17:41:47 +04:00
|
|
|
REQUIRES = xpcom \
|
|
|
|
string \
|
|
|
|
msgbase \
|
|
|
|
msgbaseutil \
|
|
|
|
editor \
|
|
|
|
necko \
|
|
|
|
dom \
|
|
|
|
uriloader \
|
|
|
|
mime \
|
|
|
|
addrbook \
|
|
|
|
rdf \
|
|
|
|
intl \
|
2002-02-20 06:10:19 +03:00
|
|
|
uconv \
|
2001-09-18 17:41:47 +04:00
|
|
|
mailnews \
|
|
|
|
widget \
|
|
|
|
msgdb \
|
|
|
|
appshell \
|
|
|
|
nkcache \
|
|
|
|
$(NULL)
|
1999-02-11 04:01:47 +03:00
|
|
|
|
2000-04-05 10:08:04 +04:00
|
|
|
ifeq ($(USE_SHORT_LIBNAME),1)
|
2001-01-18 18:35:00 +03:00
|
|
|
EXTRA_DSO_LIBS = msgbsutl
|
2000-04-05 10:08:04 +04:00
|
|
|
else
|
|
|
|
EXTRA_DSO_LIBS = msgbaseutil
|
|
|
|
endif
|
|
|
|
|
1999-07-02 07:25:32 +04:00
|
|
|
CPPSRCS = nsMsgCompFactory.cpp
|
|
|
|
EXPORTS = nsMsgCompCID.h
|
1999-02-11 04:01:47 +03:00
|
|
|
|
1999-03-23 03:06:25 +03:00
|
|
|
SHARED_LIBRARY_LIBS = \
|
2001-12-15 02:49:04 +03:00
|
|
|
$(DIST)/lib/$(LIB_PREFIX)msgcompose_s.$(LIB_SUFFIX) \
|
1999-03-23 03:06:25 +03:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
EXTRA_DSO_LDOPTS = \
|
2001-12-18 12:14:29 +03:00
|
|
|
$(LIBS_DIR) \
|
2000-04-05 10:08:04 +04:00
|
|
|
$(EXTRA_DSO_LIBS) \
|
|
|
|
$(MOZ_JS_LIBS) \
|
2001-10-23 00:44:02 +04:00
|
|
|
$(MOZ_UNICHARUTIL_LIBS) \
|
2001-10-29 00:55:32 +03:00
|
|
|
$(MOZ_COMPONENT_LIBS) \
|
1999-03-23 03:06:25 +03:00
|
|
|
$(NULL)
|
|
|
|
|
1999-02-11 04:01:47 +03:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|