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.

89 lines
1.9 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. WARNING_LEVEL=/W4 /WX
  17. !include $(TERMSRV_ROOT)\common\newcommon.inc
  18. !include $(TERMSRV_ROOT)\common\win32com.inc
  19. !include $(TSHRCLNT_ROOT)\place32.inc
  20. DLLDEF=custom.def
  21. DLLENTRY = _DllMainCRTStartup
  22. MAJORCOMP=TShrClnt
  23. MINORCOMP=custom
  24. TARGETNAME=custom
  25. TARGETTYPE=DYNLINK
  26. TARGETPATH=$(TSHRCLNT_ROOT)\lib\win32\$(_OBJ_DIR)
  27. DLLBASE=0x6A800000
  28. TARGETLIBS = $(CLIENT_LIB_DLL)
  29. C_DEFINES= $(C_DEFINES)
  30. INCLUDES = \
  31. $(INCLUDES); \
  32. $(TSHRCLNT_ROOT)\setup\inc; \
  33. $(BASE_INC_PATH); \
  34. TARGETLIBS = \
  35. $(CLIENT_LIB_DLL) \
  36. $(SDK_LIB_PATH)\shell32.lib \
  37. $(SDK_LIB_PATH)\ole32.lib \
  38. $(SDK_LIB_PATH)\msi.lib \
  39. $(SDK_LIB_PATH)\comdlg32.lib \
  40. $(SDK_LIB_PATH)\shlwapi.lib \
  41. $(DS_LIB_PATH)\rsa32.lib \
  42. $(DS_LIB_PATH)\randlib.lib \
  43. $(TSHRCLNT_ROOT)\lib\win32\$(O)\tscstpuw.lib \
  44. $(TERMSRV_ROOT)\lib\$(O)\uniwrap.lib \
  45. $(TSHRCLNT_ROOT)\lib\win32\$(O)\util.lib \
  46. $(TERMSRV_ROOT)\lib\$(O)\cryptlib.lib \
  47. $(TERMSRV_ROOT)\lib\$(O)\tssec.lib \
  48. $(SDK_LIB_PATH)\uuid.lib \
  49. $(SDK_LIB_PATH)\version.lib
  50. SOURCES = \
  51. custom.rc \
  52. custom.cpp
  53. #
  54. # We run UNICODE internally for everything
  55. #
  56. C_DEFINES=$(C_DEFINES) $(C_DEFS_UNICODE)
  57. #
  58. # Only use UNIWRAP on X86 as that is the only
  59. # architecture that needs to run on 9x
  60. #
  61. !IF $(386)
  62. C_DEFINES=$(C_DEFINES) -DUNIWRAP
  63. !ENDIF