Leaked source code of windows server 2003
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.
|
|
!IF 0 Copyright (c) 2000 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:
Khaled Sedky (khaleds) 18 January 2000
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. #
MAJORCOMP =windows MINORCOMP =spoolsv
LINKLIBS=$(PROJECT_ROOT)\lib\$(O)\spllib.lib
TARGETNAME=splwow64 TARGETPATH=obj # # The TargetType PROGLIB allows the binary to be an executable as well as # a library which exports functions # TARGETTYPE=PROGRAM
BACKGROUND_USE=1
INCLUDES=.;..;..\idl; \ ..\idl\$(O); \ ..\..\..\inc; \ ..\..\client; \ $(WINDOWS_INC_PATH); \ $(PROJECT_INC_PATH);
USE_MSVCRT=1 BUFFER_OVERFLOW_CHECKS=1
SOURCES= ldmgr.cxx \ ldmemmgr.cxx \ lddevcap.cxx \ splwow64s.c \ ldmain.cxx \ ldfuncs.cxx \ lderror.cxx \ drvevnt.cxx \ prtcfg.cxx \ basecls.cxx \ ldintrfcs.cxx \ prntuifn.cxx \ gdithnk.cxx \ lpcmgr.cxx \ splwow64.rc
C_DEFINES= -DNTOS2 -Dfree=_delete -DRPC_NO_WINDOWS_H -DUNICODE -DNO_STRICT -DDBGLOG -DSPOOLKM
UMTYPE=windows
TARGETLIBS= \ $(SDK_LIB_PATH)\winspool.lib \ $(PROJECT_ROOT)\lib\$(O)\spoolss.lib \ $(SDK_LIB_PATH)\rpcrt4.lib \ $(SDK_LIB_PATH)\uuid.lib \ $(SDK_LIB_PATH)\ntdll.lib
#PRECOMPILED_INCLUDE=precomp.h #PRECOMPILED_PCH=precomp.pch #PRECOMPILED_OBJ=precomp.obj
|