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 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-1990
NOTE: Commented description of this file is in \nt\bak\bin\sources.tpl
!ENDIF
TERMSRV_ROOT = ..\..\.. TSHRCLNT_ROOT = ..\..
!include $(TERMSRV_ROOT)\common\newcommon.inc !include $(TERMSRV_ROOT)\common\win32com.inc !include $(TSHRCLNT_ROOT)\place32.inc
MAJORCOMP=TShrClnt MINORCOMP=mstsc
TARGETNAME=mstsc TARGETPATH=$(TSHRCLNT_ROOT)\lib\win32\$(_OBJ_DIR) TARGETTYPE=PROGRAM UMENTRY=winmain
!IF 0 Don't use msvcrt.dll untill we can resolve problems with it's availability on win95 !IF "$(FREEBUILD)"!="0" USE_MSVCRT=1 !ENDIF !ENDIF
C_DEFINES=$(C_DEFINES) -DUSE_LICENSE -DENFORCE_LICENSE -DAXCORE
INCLUDES=$(INCLUDES); \ $(TSHRCLNT_ROOT)\mstscax\win32\$(O);
TARGETLIBS= \ $(CLIENT_LIB_DLL) \ $(CLIENT_LIB_EXE) \ $(SDK_LIB_PATH)\ole32.lib \ $(SDK_LIB_PATH)\oleaut32.lib \ $(SDK_LIB_PATH)\uuid.lib \ $(SDK_LIB_PATH)\shell32.lib \ $(SDK_LIB_PATH)\comctl32.lib \ $(SDK_LIB_PATH)\comdlg32.lib \ $(SDK_LIB_PATH)\shlwapi.lib \ $(TERMSRV_ROOT)\lib\$(O)\cryptlib.lib \ $(TERMSRV_ROOT)\lib\$(O)\licstore.lib \ $(TERMSRV_ROOT)\lib\$(O)\liclient.lib \ $(TERMSRV_ROOT)\lib\$(O)\licecert.lib \ $(TERMSRV_ROOT)\lib\$(O)\asn1.lib \ $(TERMSRV_ROOT)\lib\$(O)\tssec.lib \ $(TERMSRV_ROOT)\lib\win32\$(O)\tsaxuuid.lib \ $(DS_LIB_PATH)\rsa32.lib \ $(DS_LIB_PATH)\randlib.lib \ $(TSHRCLNT_ROOT)\lib\win32\$(O)\util.lib \
!if $(386) TARGETLIBS = \ $(TARGETLIBS) \ $(TERMSRV_ROOT)\lib\$(O)\uniwrap.lib \ $(TSHRCLNT_ROOT)\lib\win32\$(O)\uilibux.lib \ !else TARGETLIBS = \ $(TARGETLIBS) \ $(TSHRCLNT_ROOT)\lib\win32\$(O)\uilibu.lib \ !endif
!IF "$(FREEBUILD)"=="0" !IF $(386) TARGETLIBS = \ $(TARGETLIBS) \ $(TERMSRV_ROOT)\lib\$(O)\tsctrcux.lib \ !ELSE TARGETLIBS = \ $(TARGETLIBS) \ $(TERMSRV_ROOT)\lib\$(O)\tsctrcu.lib \ !ENDIF !ENDIF
SXS_ASSEMBLY_VERSION=5.1 SXS_MANIFEST=..\mstsc.exe.manifest SXS_MANIFEST_IN_RESOURCES= SXS_ASSEMBLY_LANGUAGE_INDEPENDENT=1 SXS_ASSEMBLY_NAME=Microsoft.Windows.RemoteDesktopConnection
# # We run UNICODE internally for everything #
C_DEFINES=$(C_DEFINES) $(C_DEFS_UNICODE)
# # Only use UNIWRAP on X86 as that is the only # architecture that needs to run on 9x # !IF $(386) C_DEFINES=$(C_DEFINES) -DUNIWRAP !ENDIF
LINKER_STACKCOMMITSIZE=32768
!include ..\clshell.inc
|