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.
 
 
 
 
 
 

83 lines
1.5 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:
Pat Styles (patst) July 1, 1999
!ENDIF
TARGETNAME=symsrv
TARGETPATH=obj
TARGETTYPE=DYNLINK
TARGETLIBS= \
$(SDK_LIB_PATH)\kernel32.lib \
$(SDK_LIB_PATH)\lz32.lib \
$(SDK_LIB_PATH)\cabinet.lib \
$(SDK_LIB_PATH)\user32.lib \
$(SDK_LIB_PATH)\wininet.lib \
$(SDK_LIB_PATH)\advapi32.lib \
$(SDK_LIB_PATH)\version.lib
INCLUDES=..\dbg-common
C_DEFINES=$(C_DEFINES) -DSYMSRV_DOT_DLL
SOURCES=symsrv.cpp \
dload.cpp \
store.cpp \
http.cpp \
crt.cpp \
uncomp.cpp \
copystr.cpp\
util.cpp \
symsrv.rc
!if $(386)
USE_NOLIBS=1
TARGETLIBS= \
$(TARGETLIBS) \
$(SDK_LIB_PATH)\exsup.lib \
$(BASE_LIB_PATH)\loadcfg.obj
!else
USE_NTDLL=1
!endif
CLFLAGS=$(CLFLAGS) /E
!ifdef DEBUG
C_DEFINES=$(C_DEFINES) /DDEBUG
!endif
DELAYLOAD=wininet.dll;user32.dll;cabinet.dll;lz32.dll
DLOAD_ERROR_HANDLER=SymSrvDelayLoadHook
MSC_WARNING_LEVEL=/W3 /WX
# save this block for reference
!if 0
DLLENTRY=_DllMainCRTStartup
USE_LIBCMT=1
!if $(386)
DLLENTRY=DllMain
USE_NOLIBS=1
!else
DLLENTRY=DllMain
USE_MSVCRT=1
!endif
!endif