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.

122 lines
2.8 KiB

  1. !IF 0
  2. Copyright (c) 1989 Microsoft Corporation
  3. Module Name:
  4. sources.
  5. Abstract:
  6. This file specifies the target component being built and the list of
  7. sources files needed to build that component. Also specifies optional
  8. compiler switches and libraries that are unique for the component being
  9. built.
  10. Author:
  11. Steve Wood (stevewo) 12-Apr-1990
  12. NOTE: Commented description of this file is in \nt\bak\bin\sources.tpl
  13. !ENDIF
  14. TERMSRV_ROOT = ..\..\..
  15. TSHRCLNT_ROOT = ..\..
  16. !include $(TERMSRV_ROOT)\common\newcommon.inc
  17. !include $(TERMSRV_ROOT)\common\win32com.inc
  18. !include $(TSHRCLNT_ROOT)\place32.inc
  19. MAJORCOMP=TShrClnt
  20. MINORCOMP=mstsc
  21. TARGETNAME=mstsc
  22. TARGETPATH=$(TSHRCLNT_ROOT)\lib\win32\$(_OBJ_DIR)
  23. TARGETTYPE=PROGRAM
  24. UMENTRY=winmain
  25. !IF 0
  26. Don't use msvcrt.dll untill we can resolve problems
  27. with it's availability on win95
  28. !IF "$(FREEBUILD)"!="0"
  29. USE_MSVCRT=1
  30. !ENDIF
  31. !ENDIF
  32. C_DEFINES=$(C_DEFINES) -DUSE_LICENSE -DENFORCE_LICENSE -DAXCORE
  33. INCLUDES=$(INCLUDES); \
  34. $(TSHRCLNT_ROOT)\mstscax\win32\$(O);
  35. TARGETLIBS= \
  36. $(CLIENT_LIB_DLL) \
  37. $(CLIENT_LIB_EXE) \
  38. $(SDK_LIB_PATH)\ole32.lib \
  39. $(SDK_LIB_PATH)\oleaut32.lib \
  40. $(SDK_LIB_PATH)\uuid.lib \
  41. $(SDK_LIB_PATH)\shell32.lib \
  42. $(SDK_LIB_PATH)\comctl32.lib \
  43. $(SDK_LIB_PATH)\comdlg32.lib \
  44. $(SDK_LIB_PATH)\shlwapi.lib \
  45. $(TERMSRV_ROOT)\lib\$(O)\cryptlib.lib \
  46. $(TERMSRV_ROOT)\lib\$(O)\licstore.lib \
  47. $(TERMSRV_ROOT)\lib\$(O)\liclient.lib \
  48. $(TERMSRV_ROOT)\lib\$(O)\licecert.lib \
  49. $(TERMSRV_ROOT)\lib\$(O)\asn1.lib \
  50. $(TERMSRV_ROOT)\lib\$(O)\tssec.lib \
  51. $(TERMSRV_ROOT)\lib\win32\$(O)\tsaxuuid.lib \
  52. $(DS_LIB_PATH)\rsa32.lib \
  53. $(DS_LIB_PATH)\randlib.lib \
  54. $(TSHRCLNT_ROOT)\lib\win32\$(O)\util.lib \
  55. !if $(386)
  56. TARGETLIBS = \
  57. $(TARGETLIBS) \
  58. $(TERMSRV_ROOT)\lib\$(O)\uniwrap.lib \
  59. $(TSHRCLNT_ROOT)\lib\win32\$(O)\uilibux.lib \
  60. !else
  61. TARGETLIBS = \
  62. $(TARGETLIBS) \
  63. $(TSHRCLNT_ROOT)\lib\win32\$(O)\uilibu.lib \
  64. !endif
  65. !IF "$(FREEBUILD)"=="0"
  66. !IF $(386)
  67. TARGETLIBS = \
  68. $(TARGETLIBS) \
  69. $(TERMSRV_ROOT)\lib\$(O)\tsctrcux.lib \
  70. !ELSE
  71. TARGETLIBS = \
  72. $(TARGETLIBS) \
  73. $(TERMSRV_ROOT)\lib\$(O)\tsctrcu.lib \
  74. !ENDIF
  75. !ENDIF
  76. SXS_ASSEMBLY_VERSION=5.1
  77. SXS_MANIFEST=..\mstsc.exe.manifest
  78. SXS_MANIFEST_IN_RESOURCES=
  79. SXS_ASSEMBLY_LANGUAGE_INDEPENDENT=1
  80. SXS_ASSEMBLY_NAME=Microsoft.Windows.RemoteDesktopConnection
  81. #
  82. # We run UNICODE internally for everything
  83. #
  84. C_DEFINES=$(C_DEFINES) $(C_DEFS_UNICODE)
  85. #
  86. # Only use UNIWRAP on X86 as that is the only
  87. # architecture that needs to run on 9x
  88. #
  89. !IF $(386)
  90. C_DEFINES=$(C_DEFINES) -DUNIWRAP
  91. !ENDIF
  92. LINKER_STACKCOMMITSIZE=32768
  93. !include ..\clshell.inc