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.

73 lines
1.5 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=core
  21. TARGETNAME=core
  22. TARGETPATH=$(TSHRCLNT_ROOT)\lib\win32\$(_OBJ_DIR)
  23. TARGETTYPE=LIBRARY
  24. C_DEFINES=$(C_DEFINES) -DUSE_LICENSE -DENFORCE_LICENSE -DAXCORE -DUSE_BBAR
  25. C_DEFINES=$(C_DEFINES) -DISOLATION_AWARE_ENABLED
  26. INCLUDES=$(INCLUDES); \
  27. $(TERMSRV_ROOT)\license\include; \
  28. $(WINDOWS_INC_PATH);
  29. !IFDEF TSC_USE_GDIPLUS
  30. INCLUDES=$(INCLUDES); $(SDK_INC_PATH)\gdiplus
  31. !ENDIF
  32. TARGETLIBS= \
  33. $(CLIENT_LIB_DLL) \
  34. $(CLIENT_LIB_EXE) \
  35. $(SDK_LIB_PATH)\ntdll.lib
  36. #
  37. # Include (platform-specific) Unicode options
  38. # Unicode is wrapped on x86 so it works on win9x
  39. #
  40. C_DEFINES=$(C_DEFINES) $(C_DEFS_UNICODE)
  41. #
  42. # Only use UNIWRAP on X86 as that is the only
  43. # architecture that needs to run on 9x
  44. #
  45. !if $(386)
  46. C_DEFINES=$(C_DEFINES) -DUNIWRAP
  47. !endif
  48. !include ..\core.inc