1999-03-09 22:31:55 +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-03-09 22:31:55 +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-03-09 22:31:55 +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-03-09 22:31:55 +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):
|
2000-08-19 02:09:26 +04:00
|
|
|
# Samir Gehani <sgehani@netscape.com>
|
1999-03-09 22:31:55 +03:00
|
|
|
#
|
|
|
|
|
|
|
|
DEPTH = ../..
|
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
1999-09-14 06:51:42 +04:00
|
|
|
VPATH = @srcdir@
|
1999-03-09 22:31:55 +03:00
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
2000-09-11 08:13:16 +04:00
|
|
|
include $(srcdir)/objs.mk
|
1999-03-09 22:31:55 +03:00
|
|
|
|
2000-09-09 18:18:48 +04:00
|
|
|
# Linux and Solaris installer needs standalone libjar
|
2000-09-11 12:08:24 +04:00
|
|
|
ifneq (,$(filter Linux SunOS,$(OS_ARCH)))
|
2000-08-19 22:50:10 +04:00
|
|
|
DIRS = standalone
|
2000-08-20 03:32:24 +04:00
|
|
|
endif
|
2000-08-19 22:50:10 +04:00
|
|
|
|
1999-09-14 06:51:42 +04:00
|
|
|
MODULE = jar
|
|
|
|
LIBRARY_NAME = jar$(VERSION_NUMBER)
|
2001-04-28 23:48:12 +04:00
|
|
|
EXPORT_LIBRARY = 1
|
1999-09-14 06:51:42 +04:00
|
|
|
IS_COMPONENT = 1
|
2001-02-22 12:35:51 +03:00
|
|
|
REQUIRES = xpcom string caps
|
1999-06-23 10:16:28 +04:00
|
|
|
|
2000-09-11 08:13:16 +04:00
|
|
|
CPPSRCS = $(MODULES_LIBJAR_LCPPSRCS)
|
1999-10-26 23:43:26 +04:00
|
|
|
|
2000-09-11 08:13:16 +04:00
|
|
|
XPIDLSRCS = $(MODULES_LIBJAR_LXPIDLSRCS)
|
1999-09-09 09:19:46 +04:00
|
|
|
|
2000-09-11 08:13:16 +04:00
|
|
|
EXPORTS = $(MODULES_LIBJAR_LEXPORTS)
|
1999-03-09 22:31:55 +03:00
|
|
|
|
2000-09-11 08:13:16 +04:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
1999-03-09 22:31:55 +03:00
|
|
|
|
2000-09-11 08:13:16 +04:00
|
|
|
EXTRA_DSO_LDOPTS += \
|
1999-08-25 18:39:53 +04:00
|
|
|
-L$(DIST)/bin \
|
|
|
|
$(ZLIB_LIBS) \
|
2000-04-04 08:46:38 +04:00
|
|
|
$(XPCOM_LIBS) \
|
1999-09-14 06:51:42 +04:00
|
|
|
$(NSPR_LIBS) \
|
1999-08-25 18:39:53 +04:00
|
|
|
$(NULL)
|
1999-07-15 15:44:30 +04:00
|
|
|
|