gecko-dev/mailnews/news/tests/makefile.win

60 строки
1.6 KiB
Plaintext
Исходник Обычный вид История

1999-01-31 10:03:13 +03:00
#!nmake
#
1998-12-22 00:13:57 +03:00
# The contents of this file are subject to the Netscape Public License
# Version 1.0 (the "NPL"); you may not use this file except in
# compliance with the NPL. You may obtain a copy of the NPL at
# http://www.mozilla.org/NPL/
#
# Software distributed under the NPL is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
# for the specific language governing rights and limitations under the
# NPL.
#
# The Initial Developer of this code under the NPL is Netscape
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
# Reserved.
1999-01-31 10:03:13 +03:00
DEPTH=..\..\..
IGNORE_MANIFEST=1
1998-12-22 00:13:57 +03:00
1999-01-31 10:03:13 +03:00
MAKE_OBJ_TYPE = EXE
PROGRAM = .\$(OBJDIR)\nntpTest.exe
1998-12-22 00:13:57 +03:00
1999-01-31 10:03:13 +03:00
OBJS = \
.\$(OBJDIR)\nntpTest.obj \
.\$(OBJDIR)\nsNNTPNewsgroupStub.obj \
.\$(OBJDIR)\nsNNTPCategoryContainerStub.obj \
.\$(OBJDIR)\nsNNTPHostStub.obj \
.\$(OBJDIR)\nsNNTPNewsgroupListStub.obj \
$(NULL)
1998-12-22 00:13:57 +03:00
1999-01-31 10:03:13 +03:00
LINCS=-I$(PUBLIC)\raptor -I$(PUBLIC)\xpcom -I$(PUBLIC)\netlib -I$(PUBLIC)\mailnews -I$(PUBLIC)\security -I$(PUBLIC)\pref -I$(PUBLIC)\rdf
1998-12-22 00:13:57 +03:00
1999-01-31 10:03:13 +03:00
MYLIBS= \
$(DIST)\lib\xpcom32.lib \
$(LIBNSPR) \
$(DIST)\lib\raptorbase.lib \
$(DIST)\lib\raptorgfxwin.lib \
$(DIST)\lib\raptorwidget.lib \
$(DIST)\lib\netlib.lib \
$(DIST)\lib\libplc21.lib \
$(DIST)\lib\nntp.lib \
$(DIST)\lib\msgcore.lib \
$(DIST)\lib\xplib.lib \
$(NULL)
1998-12-22 00:13:57 +03:00
1999-01-31 10:03:13 +03:00
LLIBS= $(MYLIBS) \
-SUBSYSTEM:CONSOLE
1998-12-22 00:13:57 +03:00
1999-01-31 10:03:13 +03:00
include <$(DEPTH)\config\rules.mak>
1998-12-22 00:13:57 +03:00
install:: $(PROGRAM)
1999-01-31 10:03:13 +03:00
$(MAKE_INSTALL) $(PROGRAM) $(DIST)\bin
1998-12-22 00:13:57 +03:00
clobber::
1999-01-31 10:03:13 +03:00
rm -f $(DIST)\bin\Mailer.exe
$(PROGRAM):: $(OBJS) $(MYLIBS)