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.

76 lines
1.7 KiB

  1. !IF 0
  2. Copyright (C) Microsoft Corporation, 1989 - 1999
  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-1989
  12. Revision History:
  13. !ENDIF
  14. !include ..\daytona.inc
  15. #
  16. # The TARGETNAME variable is defined by the developer. It is the name of
  17. # the target (component) that is being built by this makefile. It
  18. # should NOT include any path or file extension information.
  19. #
  20. TARGETNAME=SensCfg
  21. #
  22. # The TARGETPATH and TARGETTYPE varialbes are defined by the developer.
  23. # The first specifies where the target is to be build. The second specifies
  24. # the type of target (either PROGRAM, DYNLINK or LIBRARY)
  25. #
  26. TARGETPATH=.\obj
  27. TARGETTYPE=DYNLINK
  28. TARGETLIBS= \
  29. $(SDK_LIB_PATH)\ntdll.lib \
  30. $(SDK_LIB_PATH)\kernel32.lib \
  31. $(SDK_LIB_PATH)\advapi32.lib \
  32. $(SDK_LIB_PATH)\ole32.lib \
  33. $(SDK_LIB_PATH)\oleaut32.lib \
  34. $(SDK_LIB_PATH)\uuid.lib \
  35. $(SDK_LIB_PATH)\svcguid.lib \
  36. #
  37. # Only on debug builds
  38. #
  39. !if !$(FREEBUILD)
  40. ..\common\$(O)\common.lib \
  41. $(SDK_LIB_PATH)\user32.lib \
  42. !endif
  43. #
  44. # The INCLUDES variable specifies any include paths that are specific to
  45. # this source directory. Separate multiple directory paths with single
  46. # semicolons. Relative path specifications are okay.
  47. #
  48. INCLUDES=..\common;
  49. MSC_WARNING_LEVEL=/WX /W3
  50. USE_NOLIBS=1
  51. SOURCES= senscfg.cxx \
  52. senscfg.rc \
  53. UMTYPE=console
  54. UMRES=$(O)\senscfg.res