1999-06-23 10:16:28 +04:00
|
|
|
#!nmake
|
1999-03-09 05:13:56 +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 05:13:56 +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 05:13:56 +03:00
|
|
|
#
|
|
|
|
# The Original Code is Mozilla Communicator client code,
|
|
|
|
# released March 31, 1998.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is Netscape Communications
|
1999-11-06 06:43:54 +03:00
|
|
|
# Corporation. Portions created by Netscape are
|
|
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
# Rights Reserved.
|
1999-03-09 05:13:56 +03:00
|
|
|
#
|
1999-11-06 06:43:54 +03:00
|
|
|
# Contributor(s):
|
1999-03-09 05:13:56 +03:00
|
|
|
# Daniel Veditz <dveditz@netscape.com>
|
2000-01-29 03:03:57 +03:00
|
|
|
# Mitch Stoltz <mstoltz@netscape.com>
|
1999-03-22 09:10:59 +03:00
|
|
|
|
1999-09-01 05:24:51 +04:00
|
|
|
|
1999-03-09 05:13:56 +03:00
|
|
|
|
2001-07-20 02:43:14 +04:00
|
|
|
# Make this a true dynamic component even in static builds because
|
|
|
|
# this component is shared by installer
|
|
|
|
!undef MOZ_STATIC_COMPONENT_LIBS
|
|
|
|
|
1999-04-28 04:34:30 +04:00
|
|
|
DIRS=standalone
|
|
|
|
|
2001-07-20 02:43:14 +04:00
|
|
|
MODULE=jar
|
2001-06-21 00:21:49 +04:00
|
|
|
LIBRARY_NAME=jar$(VERSION_NUMBER)
|
|
|
|
MODULE_NAME=nsJarModule
|
2001-09-19 02:01:13 +04:00
|
|
|
REQUIRES = xpcom \
|
|
|
|
string \
|
|
|
|
caps \
|
|
|
|
zlib \
|
|
|
|
$(NULL)
|
1999-03-22 09:10:59 +03:00
|
|
|
|
2001-06-21 00:21:49 +04:00
|
|
|
DEPTH=..\..
|
1999-03-09 05:13:56 +03:00
|
|
|
|
1999-11-12 09:13:13 +03:00
|
|
|
XPIDLSRCS=.\nsIZipReader.idl \
|
2001-02-23 03:15:04 +03:00
|
|
|
.\nsIJAR.idl \
|
1999-06-23 10:16:28 +04:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
EXPORTS=zipfile.h
|
1999-03-09 05:13:56 +03:00
|
|
|
|
1999-06-02 01:08:32 +04:00
|
|
|
OBJS=.\$(OBJDIR)\nsZipArchive.obj \
|
1999-06-02 20:51:39 +04:00
|
|
|
.\$(OBJDIR)\nsJAR.obj \
|
1999-09-09 09:29:42 +04:00
|
|
|
.\$(OBJDIR)\nsJARFactory.obj \
|
1999-10-26 23:43:26 +04:00
|
|
|
.\$(OBJDIR)\nsJARInputStream.obj \
|
1999-09-09 09:29:42 +04:00
|
|
|
.\$(OBJDIR)\nsWildCard.obj \
|
2000-01-29 03:03:57 +03:00
|
|
|
$(NULL)
|
1999-03-09 05:13:56 +03:00
|
|
|
|
2001-07-01 03:38:09 +04:00
|
|
|
LCFLAGS=-DZLIB_DLL=1
|
|
|
|
|
1999-03-09 05:13:56 +03:00
|
|
|
|
1999-04-28 04:34:30 +04:00
|
|
|
LLIBS= \
|
1999-06-02 01:22:27 +04:00
|
|
|
$(LIBNSPR) \
|
1999-04-28 04:34:30 +04:00
|
|
|
$(DIST)\lib\zlib.lib \
|
1999-06-02 01:08:32 +04:00
|
|
|
$(DIST)\lib\xpcom.lib \
|
1999-03-22 09:10:59 +03:00
|
|
|
$(NULL)
|
1999-03-09 05:13:56 +03:00
|
|
|
|
|
|
|
include <$(DEPTH)/config/rules.mak>
|