1999-01-07 01:23:22 +00:00
|
|
|
#!nmake
|
|
|
|
#
|
1999-11-06 03:43:54 +00: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-01-07 01:23:22 +00:00
|
|
|
#
|
1999-11-06 03:43:54 +00: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-01-07 01:23:22 +00:00
|
|
|
#
|
1999-11-06 03:43:54 +00:00
|
|
|
# The Original Code is mozilla.org code.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is Netscape
|
1999-01-07 01:23:22 +00:00
|
|
|
# Communications Corporation. Portions created by Netscape are
|
1999-11-06 03:43:54 +00:00
|
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
# Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
1999-01-07 01:23:22 +00:00
|
|
|
|
2000-04-22 16:38:50 +00:00
|
|
|
DEPTH = ..\..\..
|
1999-01-07 01:23:22 +00:00
|
|
|
|
1999-08-03 21:05:59 +00:00
|
|
|
MAKE_OBJ_TYPE = EXE
|
2000-04-22 16:38:50 +00:00
|
|
|
|
1999-08-03 21:05:59 +00:00
|
|
|
PROG1 = .\$(OBJDIR)\convperf.exe
|
|
|
|
PROG2 = .\$(OBJDIR)\nsTestUConv.exe
|
|
|
|
PROG3 = .\$(OBJDIR)\nsconv.exe
|
1999-08-25 22:05:28 +00:00
|
|
|
PROG4 = .\$(OBJDIR)\plattest.exe
|
2000-04-22 16:38:50 +00:00
|
|
|
PROG5 = .\$(OBJDIR)\TestUConv.exe
|
|
|
|
PROGRAMS = $(PROG1) $(PROG2) $(PROG3) $(PROG4) $(PROG5)
|
1999-01-07 01:23:22 +00:00
|
|
|
|
2000-04-22 16:38:50 +00:00
|
|
|
LCFLAGS = -DUSE_NSREG
|
1999-01-07 01:23:22 +00:00
|
|
|
|
|
|
|
|
2000-04-22 16:38:50 +00:00
|
|
|
LINCS = -I$(PUBLIC)\xpcom
|
1999-01-07 01:23:22 +00:00
|
|
|
|
2000-04-22 16:38:50 +00:00
|
|
|
LLIBS = \
|
|
|
|
$(DIST)\lib\xpcom.lib \
|
|
|
|
$(LIBNSPR)
|
1999-01-07 01:23:22 +00:00
|
|
|
|
1999-08-03 21:05:59 +00:00
|
|
|
|
1999-01-07 01:23:22 +00:00
|
|
|
include <$(DEPTH)\config\rules.mak>
|
|
|
|
|
1999-08-03 21:05:59 +00:00
|
|
|
install:: $(PROGRAMS)
|
2000-04-22 16:38:50 +00:00
|
|
|
-for %p in ($(PROGRAMS)) do $(MAKE_INSTALL) %p $(DIST)\bin
|
1999-01-07 01:23:22 +00:00
|
|
|
|
|
|
|
clobber::
|
2000-04-22 16:38:50 +00:00
|
|
|
-for %p in ($(PROGRAMS)) do $(RM) %p $(DIST)\bin\%p
|
1999-08-03 21:05:59 +00:00
|
|
|
|
|
|
|
$(PROG1): $(OBJDIR) convperf.cpp
|
|
|
|
$(PROG2): $(OBJDIR) nsTestUConv.cpp
|
|
|
|
$(PROG3): $(OBJDIR) nsconv.cpp
|
1999-08-25 22:05:28 +00:00
|
|
|
$(PROG4): $(OBJDIR) plattest.cpp
|
2000-04-22 16:38:50 +00:00
|
|
|
$(PROG5): $(OBJDIR) TestUConv.cpp
|