1999-04-06 01:06:07 +04:00
|
|
|
#!nmake
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
DEPTH=..\..
|
|
|
|
|
|
|
|
MAKE_OBJ_TYPE = EXE
|
|
|
|
PROG1 = .\$(OBJDIR)\TestFileInput.exe
|
1999-04-19 11:17:37 +04:00
|
|
|
PROG2 = .\$(OBJDIR)\TestSocketInput.exe
|
|
|
|
PROG3 = .\$(OBJDIR)\TestSocketIO.exe
|
1999-05-21 10:29:13 +04:00
|
|
|
PROG4 = .\$(OBJDIR)\TestProtocols.exe
|
1999-05-31 09:18:19 +04:00
|
|
|
PROG5 = .\$(OBJDIR)\TestSocketTransport.exe
|
1999-06-14 12:44:22 +04:00
|
|
|
PROG6 = .\$(OBJDIR)\urltest.exe
|
1999-06-15 09:18:40 +04:00
|
|
|
PROG7 = .\$(OBJDIR)\TestFileInput2.exe
|
1999-09-16 05:16:22 +04:00
|
|
|
PROG8 = .\$(OBJDIR)\TestFileTransport.exe
|
|
|
|
PROGRAMS = $(PROG1) $(PROG2) $(PROG3) $(PROG4) $(PROG5) $(PROG6) $(PROG7) $(PROG8)
|
1999-04-06 01:06:07 +04:00
|
|
|
|
|
|
|
LCFLAGS=-DUSE_NSREG -GX
|
|
|
|
|
|
|
|
REQUIRES=libreg
|
|
|
|
|
1999-06-12 05:41:08 +04:00
|
|
|
INCS = $(INCS) \
|
|
|
|
-I$(DEPTH)\dist\include \
|
1999-04-06 01:06:07 +04:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
LLIBS= \
|
1999-05-24 13:01:47 +04:00
|
|
|
$(DIST)\lib\xpcom.lib \
|
1999-10-10 05:32:59 +04:00
|
|
|
$(DIST)\lib\gkgfxwin.lib \
|
1999-04-06 01:06:07 +04:00
|
|
|
$(LIBNSPR) \
|
1999-08-24 23:18:20 +04:00
|
|
|
$(NULL)
|
1999-04-06 01:06:07 +04:00
|
|
|
|
|
|
|
include <$(DEPTH)\config\rules.mak>
|
|
|
|
|
|
|
|
install:: $(PROGRAMS)
|
|
|
|
-for %p in ($(PROGRAMS)) do $(MAKE_INSTALL) %p $(DIST)\bin
|
|
|
|
|
|
|
|
clobber::
|
|
|
|
-for %p in ($(PROGRAMS)) do $(RM) %p $(DIST)\bin\%p
|
|
|
|
|
|
|
|
$(PROG1): $(OBJDIR) TestFileInput.cpp
|
|
|
|
|
1999-04-19 11:17:37 +04:00
|
|
|
$(PROG2): $(OBJDIR) TestSocketInput.cpp
|
|
|
|
|
|
|
|
$(PROG3): $(OBJDIR) TestSocketIO.cpp
|
1999-04-29 00:07:33 +04:00
|
|
|
|
1999-05-21 10:29:13 +04:00
|
|
|
$(PROG4): $(OBJDIR) TestProtocols.cpp
|
|
|
|
|
1999-05-31 09:18:19 +04:00
|
|
|
$(PROG5): $(OBJDIR) TestSocketTransport.cpp
|
1999-06-14 12:44:22 +04:00
|
|
|
|
|
|
|
$(PROG6): $(OBJDIR) urltest.cpp
|
1999-06-15 09:18:40 +04:00
|
|
|
|
|
|
|
$(PROG7): $(OBJDIR) TestFileInput2.cpp
|
1999-09-16 05:16:22 +04:00
|
|
|
|
|
|
|
$(PROG8): $(OBJDIR) TestFileTransport.cpp
|