added compatibility mode git-svn-id: svn://10.0.0.236/trunk@6938 18797224-902f-48f8-a5cc-f745e15eee43
86 lines
2.3 KiB
Plaintext
86 lines
2.3 KiB
Plaintext
#!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=..\..\..
|
|
|
|
LIBRARY_NAME=raptorlayout_s
|
|
DEFINES=-D_IMPL_NS_LAYOUT -DWIN32_LEAN_AND_MEAN
|
|
|
|
CPPSRCS = \
|
|
nsContainerFrame.cpp \
|
|
nsContentList.cpp \
|
|
nsDocument.cpp \
|
|
nsFrame.cpp \
|
|
nsFrameImageLoader.cpp \
|
|
nsGalleyContext.cpp \
|
|
nsPresContext.cpp \
|
|
nsPresShell.cpp \
|
|
nsPrintPreviewContext.cpp \
|
|
nsSelection.cpp \
|
|
nsSelectionPoint.cpp \
|
|
nsSelectionRange.cpp \
|
|
nsSpaceManager.cpp \
|
|
nsSplittableFrame.cpp \
|
|
nsStyleContext.cpp \
|
|
nsStyleCoord.cpp \
|
|
nsStyleSet.cpp \
|
|
nsXIFConverter.cpp \
|
|
$(NULL)
|
|
|
|
MODULE=raptor
|
|
REQUIRES=xpcom raptor dom
|
|
EXPORTS=nsSelectionRange.h nsSelectionPoint.h
|
|
|
|
CPP_OBJS= \
|
|
.\$(OBJDIR)\nsContainerFrame.obj \
|
|
.\$(OBJDIR)\nsContentList.obj \
|
|
.\$(OBJDIR)\nsDocument.obj \
|
|
.\$(OBJDIR)\nsFrame.obj \
|
|
.\$(OBJDIR)\nsFrameImageLoader.obj \
|
|
.\$(OBJDIR)\nsGalleyContext.obj \
|
|
.\$(OBJDIR)\nsPresContext.obj \
|
|
.\$(OBJDIR)\nsPresShell.obj \
|
|
.\$(OBJDIR)\nsPrintPreviewContext.obj \
|
|
.\$(OBJDIR)\nsSelection.obj \
|
|
.\$(OBJDIR)\nsSelectionPoint.obj \
|
|
.\$(OBJDIR)\nsSelectionRange.obj \
|
|
.\$(OBJDIR)\nsSpaceManager.obj \
|
|
.\$(OBJDIR)\nsSplittableFrame.obj \
|
|
.\$(OBJDIR)\nsStyleContext.obj \
|
|
.\$(OBJDIR)\nsStyleCoord.obj \
|
|
.\$(OBJDIR)\nsStyleSet.obj \
|
|
.\$(OBJDIR)\nsXIFConverter.obj \
|
|
$(NULL)
|
|
|
|
LINCS=-I$(PUBLIC)\xpcom -I$(PUBLIC)\raptor \
|
|
-I$(PUBLIC)\dom -I$(PUBLIC)\js -I$(PUBLIC)\netlib \
|
|
-I$(PUBLIC)\pref
|
|
|
|
LCFLAGS = \
|
|
$(LCFLAGS) \
|
|
$(DEFINES) \
|
|
$(NULL)
|
|
|
|
include <$(DEPTH)\layout\config\rules.mak>
|
|
|
|
libs:: $(LIBRARY)
|
|
$(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib
|
|
|
|
clobber::
|
|
rm -f $(DIST)\lib\$(LIBRARY_NAME).lib
|
|
rm -f $(PDBFILE).pdb
|