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.

123 lines
2.4 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. MSC_WARNING_LEVEL=/W3 /WX
  20. MAJORCOMP=TSClient
  21. MINORCOMP=rdpdr
  22. TARGETNAME=rdpdr
  23. TARGETPATH=$(TSHRCLNT_ROOT)\lib\win32\$(_OBJ_DIR)
  24. TARGETTYPE=LIBRARY
  25. PASS0_HEADERDIR=$(O)
  26. MC_SOURCEDIR=$(O)
  27. C_DEFINES=$(C_DEFINES) $(CLIENT_DLL_CDEFS)
  28. USE_SYSTEM_MIDL=1
  29. IDL_TYPE=RPC
  30. PASS0_IDLDIR=$(O)
  31. PASS0_CLIENTDIR=$(O)
  32. PASS0_SERVERDIR=$(O)
  33. PASS0_HEADERDIR=$(O)
  34. PASS0_SOURCEDIR=$(O)
  35. MIDL_FLAGS=$(MIDL_FLAGS)
  36. NTTARGETFILE0=$(O)\scredir.idl
  37. INCLUDES=$(INCLUDES);$(DS_INC_PATH)
  38. #
  39. # List of sources
  40. #
  41. SOURCES = \
  42. $(O)\scredir.idl \
  43. ..\proc.cpp \
  44. ..\drobject.cpp \
  45. ..\drdev.cpp \
  46. ..\w32draut.cpp \
  47. ..\w32drcom.cpp \
  48. ..\w32drman.cpp \
  49. ..\w32drlpt.cpp \
  50. ..\w32drprn.cpp \
  51. ..\w32drdev.cpp \
  52. ..\vcint.cpp \
  53. ..\drfile.cpp \
  54. ..\drfsfile.cpp \
  55. ..\w32drive.cpp \
  56. ..\w32scard.cpp \
  57. ..\w32utl.cpp \
  58. ..\w32proc.cpp \
  59. ..\cclip.cpp \
  60. ..\w32drprt.cpp \
  61. ..\drdevasc.cpp \
  62. ..\drdevol.cpp \
  63. ..\w32dispq.cpp \
  64. ..\drprt.cpp \
  65. ..\tracecom.cpp \
  66. ..\drprn.cpp \
  67. ..\drstr.cpp \
  68. ..\drdbg.cpp \
  69. ..\smartptr.cpp \
  70. ..\utl.cpp \
  71. ..\thrpool.cpp \
  72. ..\rdpsndc.cpp \
  73. ..\scredir-s.c \
  74. ..\scredir-c.c
  75. #
  76. # Precompiled specs
  77. #
  78. PRECOMPILED_CXX = 1
  79. PRECOMPILED_INCLUDE = ..\precom.h
  80. PRECOMPILED_PCH = precom.pch
  81. #
  82. # Include (platform-specific) Unicode options
  83. # Unicode is wrapped on x86 so it works on win9x
  84. #
  85. C_DEFINES=$(C_DEFINES) $(C_DEFS_UNICODE)
  86. #
  87. # Only use UNIWRAP on X86 as that is the only
  88. # architecture that needs to run on 9x
  89. #
  90. !IF $(386)
  91. C_DEFINES=$(C_DEFINES) -DUNIWRAP
  92. !ENDIF