1999-06-21 21:24:08 +00:00
|
|
|
#
|
2004-04-17 21:52:36 +00:00
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1999-06-21 21:24:08 +00:00
|
|
|
#
|
2004-04-17 21:52:36 +00:00
|
|
|
# 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.
|
1999-06-21 21:24:08 +00:00
|
|
|
#
|
1999-11-06 03:43:54 +00:00
|
|
|
# The Original Code is mozilla.org code.
|
|
|
|
#
|
2004-04-17 21:52:36 +00:00
|
|
|
# The Initial Developer of the Original Code is
|
|
|
|
# Netscape Communications Corporation.
|
|
|
|
# Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
# the Initial Developer. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
1999-11-06 03:43:54 +00:00
|
|
|
#
|
2004-04-17 21:52:36 +00:00
|
|
|
# Alternatively, the contents of this file may be used under the terms of
|
|
|
|
# either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
# or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
# in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
# of those above. If you wish to allow use of your version of this file only
|
|
|
|
# under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
# use your version of this file under the terms of the MPL, indicate your
|
|
|
|
# decision by deleting the provisions above and replace them with the notice
|
|
|
|
# and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
# the provisions above, a recipient may use your version of this file under
|
|
|
|
# the terms of any one of the MPL, the GPL or the LGPL.
|
1999-06-28 23:27:40 +00:00
|
|
|
#
|
2004-04-17 21:52:36 +00:00
|
|
|
# ***** END LICENSE BLOCK *****
|
1999-06-21 21:24:08 +00:00
|
|
|
|
1999-09-07 23:22:40 +00:00
|
|
|
DEPTH = ../../..
|
1999-06-21 21:24:08 +00:00
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
1999-06-28 23:27:40 +00:00
|
|
|
MODULE = mork
|
|
|
|
LIBRARY_NAME = mork
|
2001-04-28 19:48:12 +00:00
|
|
|
EXPORT_LIBRARY = 1
|
1999-06-28 23:27:40 +00:00
|
|
|
IS_COMPONENT = 1
|
2001-06-20 20:21:49 +00:00
|
|
|
MODULE_NAME = nsMorkModule
|
2005-03-18 21:24:05 +00:00
|
|
|
LIBXUL_LIBRARY = 1
|
2004-01-07 13:37:00 +00:00
|
|
|
|
|
|
|
PACKAGE_FILE = mork.pkg
|
|
|
|
|
2001-09-18 13:41:47 +00:00
|
|
|
REQUIRES = xpcom \
|
|
|
|
$(NULL)
|
1999-06-21 21:24:08 +00:00
|
|
|
|
1999-06-28 23:27:40 +00:00
|
|
|
CPPSRCS = nsMorkFactory.cpp
|
1999-06-21 21:24:08 +00:00
|
|
|
|
1999-06-28 23:27:40 +00:00
|
|
|
EXPORTS = \
|
|
|
|
nsMorkCID.h \
|
|
|
|
nsIMdbFactoryFactory.h \
|
|
|
|
$(NULL)
|
1999-06-21 21:24:08 +00:00
|
|
|
|
2006-02-14 15:57:04 +00:00
|
|
|
SHARED_LIBRARY_LIBS = ../src/$(LIB_PREFIX)msgmork_s.$(LIB_SUFFIX)
|
1999-06-21 21:24:08 +00:00
|
|
|
|
1999-06-28 23:27:40 +00:00
|
|
|
EXTRA_DSO_LDOPTS = \
|
2001-12-18 09:14:29 +00:00
|
|
|
$(LIBS_DIR) \
|
2000-04-04 07:37:50 +00:00
|
|
|
$(MOZ_COMPONENT_LIBS) \
|
1999-07-30 23:36:14 +00:00
|
|
|
$(NULL)
|
1999-06-21 21:24:08 +00:00
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|