Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

137 lines
4.2 KiB

!IF 0
Copyright (c) 1989 Microsoft Corporation
Module Name:
sources.
Abstract:
This file specifies the target component being built and the list of
sources files needed to build that component. Also specifies optional
compiler switches and libraries that are unique for the component being
built.
Author:
Steve Wood (stevewo) 12-Apr-1989
Revision History:
!ENDIF
#
# The TARGETNAME variable is defined by the developer. It is the name of
# the target (component) that is being built by this makefile. It
# should NOT include any path or file extension information.
#
TARGETNAME=codegen
#
# The TARGETPATH and TARGETTYPE varialbes are defined by the developer.
# The first specifies where the target is to be build. The second specifies
# the type of target (either PROGRAM, DYNLINK or LIBRARY)
#
TARGETPATH=..\lib
TARGETTYPE=LIBRARY
386_STDCALL=0
MSC_WARNING_LEVEL=/WX /W3
#
# The INCLUDES variable specifies any include paths that are specific to
# this source directory. Separate multiple directory paths with single
# semicolons. Relative path specifications are okay.
#
INCLUDES=.;..;..\front;..\include;..\analysis;..\expr;..\support;
#
# The SOURCES variable is defined by the developer. It is a list of all the
# source files for this component. Each source file should be on a separate
# line using the line continuation character. This will minimize merge
# conflicts if two developers adding source files to the same component.
#
BLDCRT=1
PRECOMPILED_INCLUDE=becls.hxx
SOURCES= \
pickle.cxx \
paddict.cxx \
auxgen.cxx \
stgen.cxx \
pungent.cxx \
typegen.cxx \
ptrgen.cxx \
arraygen.cxx \
bindcls.cxx \
sdesc.cxx \
treg.cxx \
dtable.cxx \
output.cxx \
output1.cxx \
procgen.cxx \
ilxlat.cxx \
ilbase.cxx \
ilcore.cxx \
btgen.cxx \
misccls.cxx \
filecls.cxx \
ccb.cxx \
resmgr.cxx \
resdict.cxx \
cgmain.cxx \
cgdump.cxx \
cgcls.cxx \
ndrcls.cxx \
stcls.cxx \
proccls.cxx \
frmtstr.cxx \
btndr.cxx \
ptrndr.cxx \
arrayndr.cxx \
stndr.cxx \
ilreg.cxx \
ilctxt.cxx \
procndr.cxx \
unionndr.cxx \
uniongen.cxx \
bindndr.cxx \
cgobject.cxx \
iid.cxx \
header.cxx \
frmtreg.cxx \
comcls.cxx \
comhdr.cxx \
comsvr.cxx \
comtst.cxx \
typendr.cxx \
pipendr.cxx \
szbuffer.cxx
# Set this to remove crt asserts from the retail build.
!if "$(NTDEBUG)"=="retail" || "$(NTDEBUG)"==""
C_DEFINES= $(C_DEFINES) -DNDEBUG
!endif
UMTYPE=console
#
# Defining the NTTARGETFILES variable causes MAKEFILE.DEF to attempt to
# include .\makefile.inc immediately after it specifies the top
# level targets (all, clean and loc) and their dependencies. MAKEFILE.DEF
# also expands the value of the NTTARGETFILES variable at the end of the
# list of dependencies for the all target. Useful for specifying additional
# targets and dependencies that don't fit the general case covered by
# MAKEFILE.DEF
#