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.

77 lines
1.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=tscsetup
  22. TARGETNAME=tscstpuw
  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. INCLUDES = \
  29. $(INCLUDES); \
  30. $(TSHRCLNT_ROOT)\setup\inc;
  31. #
  32. # List of sources
  33. #
  34. SOURCES = \
  35. ..\acme.cpp \
  36. ..\common.cpp \
  37. ..\msi.cpp
  38. #
  39. # Precompiled specs
  40. #
  41. # PRECOMPILED_INCLUDE = ..\precom.h
  42. # PRECOMPILED_PCH = precom.pch
  43. #
  44. # Include (platform-specific) Unicode options
  45. # Use unicode wrappers only on x86 (UNIWRAP)
  46. #
  47. C_DEFINES=$(C_DEFINES) $(C_DEFS_UNICODE)
  48. !IF $(386)
  49. C_DEFINES=$(C_DEFINES) -DUNIWRAP
  50. !ENDIF