1999-03-31 23:53:46 +04:00
|
|
|
#!gmake
|
|
|
|
#
|
1999-11-06 06:40:37 +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-31 23:53:46 +04:00
|
|
|
#
|
1999-11-06 06:40:37 +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-31 23:53:46 +04:00
|
|
|
#
|
1999-11-06 06:40:37 +03:00
|
|
|
# The Original Code is mozilla.org code.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is Netscape
|
1999-03-31 23:53:46 +04:00
|
|
|
# Communications Corporation. Portions created by Netscape are
|
1999-11-06 06:40:37 +03:00
|
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
# Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
1999-03-31 23:53:46 +04:00
|
|
|
|
|
|
|
DEPTH=..\..
|
1999-06-25 03:13:46 +04:00
|
|
|
MODULE=necko
|
1999-03-31 23:53:46 +04:00
|
|
|
|
|
|
|
MAKE_OBJ_TYPE=DLL
|
1999-06-25 03:13:46 +04:00
|
|
|
DLLNAME=necko
|
1999-03-31 23:53:46 +04:00
|
|
|
DLL=.\$(OBJDIR)\$(DLLNAME).dll
|
|
|
|
|
|
|
|
CPP_OBJS= \
|
1999-10-01 01:22:48 +04:00
|
|
|
.\$(OBJDIR)\nsNetModule.obj \
|
1999-03-31 23:53:46 +04:00
|
|
|
$(NULL)
|
|
|
|
|
1999-06-25 07:00:32 +04:00
|
|
|
LLIBS= \
|
1999-06-25 03:13:46 +04:00
|
|
|
$(DIST)\lib\neckobase_s.lib \
|
|
|
|
$(DIST)\lib\neckodns_s.lib \
|
1999-08-22 19:20:43 +04:00
|
|
|
$(DIST)\lib\neckosocket_s.lib \
|
1999-06-25 07:00:32 +04:00
|
|
|
$(DIST)\lib\xpcom.lib \
|
1999-03-31 23:53:46 +04:00
|
|
|
$(LIBNSPR)
|
|
|
|
|
1999-06-12 05:41:08 +04:00
|
|
|
INCS = $(INCS) \
|
|
|
|
-I$(DEPTH)\dist\include \
|
1999-06-25 06:45:05 +04:00
|
|
|
-I$(DEPTH)\netwerk\base\src \
|
|
|
|
-I$(DEPTH)\netwerk\dns\src \
|
1999-08-22 19:20:43 +04:00
|
|
|
-I$(DEPTH)\netwerk\socket\base \
|
1999-03-31 23:53:46 +04:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
include <$(DEPTH)\config\rules.mak>
|
|
|
|
|
|
|
|
install:: $(DLL)
|
|
|
|
$(MAKE_INSTALL) .\$(OBJDIR)\$(DLLNAME).dll $(DIST)\bin\components
|
|
|
|
$(MAKE_INSTALL) .\$(OBJDIR)\$(DLLNAME).lib $(DIST)\lib
|
|
|
|
|