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) 1989-98 Microsoft Corporation
Module Name:
common.inc - Win32 specific (TShare Client) build definitions
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:
Madan Appiah - Sep. 5th 1997
NOTE: Commented description of this file is in \nt\bak\bin\sources.tpl
!ENDIF
SDK_LIB_PATH = $(BASEDIR)\public\sdk\lib\* CRT_LIB_PATH = $(BASEDIR)\public\sdk\lib\* SDK_INC_PATH = $(BASEDIR)\public\sdk\inc CRT_INC_PATH = $(SDK_INC_PATH)\crt
# # Set common options #
# # Use Multi-threaded static library by default. # USE_LIBCMT = 1
# # Insure that we will work on Win 95 # #CHICAGO_PROJECT = 1 #CHICAGO_PRODUCT = 1
CBSTRING = -cbstring P5_FDIV_FIX = /QIfdiv- P5_0F_FIX = /QIf C_INCREMENTAL_FLAG = /Gi- /Gm- EH_FLAGS = /GX- /GR- FRAME_PTR_ON = /Oy FRAME_PTR_OFF = /Oy- CL_TARGET_SPEC = /Yl$(TARGETNAME)
# # Library files, referenced by <component>.inc file, eg client.inc # CLIENT_LIB_DLL = \ $(SDK_LIB_PATH)\kernel32.lib \ $(SDK_LIB_PATH)\advapi32.lib \ $(SDK_LIB_PATH)\user32.lib \ $(SDK_LIB_PATH)\gdi32.lib \ $(SDK_LIB_PATH)\imagehlp.lib
CLIENT_LIB_EXE = \ $(SDK_LIB_PATH)\wsock32.lib \ $(SDK_LIB_PATH)\shell32.lib \ # $(SDK_LIB_PATH)\netapi32.lib
# # Additional compiler flags # WIN32_DEFINE = -DWIN32=200 -D_CHICAGO_=200 -D_WIN32_WINDOWS=0x040a -D_WIN32_WINNT=0x0400 CLIENT_SECURITY = -DISSP_LEVEL=32 C_DEFINES = $(C_DEFINES) -DWIN32 -D_WIN32 -DWIN_95_32_BIT C_DEFS_UNICODE = -DUNICODE -D_UNICODE
!IF "$(_PERF)" == "1" C_DEFINES = $(C_DEFINES) -DPERF !ENDIF
# # Additional linker flags #
#LINKER_FLAGS = $(LINKER_FLAGS) -map
# # File name prefix for 32-bit # PLATFORM_PREFIX = n
C_DEFINES=$(C_DEFINES) -DOS_WIN32 -DOS_WINNT -DSECURITY_WIN32
# # Setup MSC_OPTIMIZATION for debug and retail # !if "$(FREEBUILD)" == "0" MSC_OPTIMIZATION=/Odi !else MSC_OPTIMIZATION=/Oxs !endif
386_WARNING_LEVEL=/W3
!ifdef ICACAP_BUILD
MSC_OPTIMIZATION=$(MSC_OPTIMIZATION) /Gh PERFLIBS=$(SDK_LIB_PATH)\icap.lib LINKLIBS=$(LINKLIBS) $(PERFLIBS)
!endif // ICACAP_BUILD
|