Source code of Windows XP (NT5)
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.

81 lines
1.6 KiB

  1. #Copyright (c) 1998 - 1999 Microsoft Corporation
  2. !IF 0
  3. Module Name:
  4. sources.inc
  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. Makarand Patwardhan (makarp)
  12. !ENDIF
  13. TERMSRV_ROOT = ..\..
  14. INCLUDES= \
  15. $(TERMSRV_ROOT)\license\TLServer\common; \
  16. $(TERMSRV_ROOT)\common\license\inc; \
  17. $(TERMSRV_ROOT)\license\TLServer\include; \
  18. $(BASE_INC_PATH);
  19. MAJORCOMP=consrv
  20. MINORCOMP=consrv
  21. TARGETPATH=obj
  22. TARGETTYPE=PROGRAM
  23. TARGETNAME=consrv
  24. C_DEFINES=-DWIN32
  25. #C_DEFINES=-DWIN32
  26. USE_STL=1
  27. SOURCES= service.cpp \
  28. logmsg.cpp
  29. TARGETLIBS= \
  30. $(TERMSRV_LIB_PATH)\syslib.lib \
  31. $(TERMSRV_ROOT)\lib\$(O)\common.lib \
  32. $(TERMSRV_ROOT)\lib\$(O)\tlsapip.lib \
  33. $(SDK_LIB_PATH)\user32.lib \
  34. $(SDK_LIB_PATH)\netapi32.lib \
  35. $(SDK_LIB_PATH)\clusapi.lib \
  36. $(SDK_LIB_PATH)\user32.lib \
  37. $(SDK_LIB_PATH)\shell32.lib \
  38. $(SDK_LIB_PATH)\setupapi.lib \
  39. $(SDK_LIB_PATH)\ntdll.lib \
  40. $(SDK_LIB_PATH)\advapip.lib \
  41. $(SDK_LIB_PATH)\advapi32.lib \
  42. $(SDK_LIB_PATH)\version.lib \
  43. $(SDK_LIB_PATH)\imagehlp.lib \
  44. $(SDK_LIB_PATH)\ws2_32.lib \
  45. $(SDK_LIB_PATH)\wtsapi32.lib
  46. #PRECOMPILED_INCLUDE = stdafx.h
  47. #PRECOMPILED_SOURCEFILE = stdafx.cpp
  48. #PRECOMPILED_CXX = 1
  49. UMTYPE=console
  50. USE_MSVCRT = 1
  51. USE_IOSTREAM = 1
  52. 386_WARNING_LEVEL=-W4