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.

92 lines
2.0 KiB

  1. !IF 0
  2. Copyright (c) 1989-1991 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. NOTE: Commented description of this file is in \nt\public\oak\bin\sources.tpl
  11. !ENDIF
  12. DLLENTRY=_DllMainCRTStartup
  13. PRECOMPILED_INCLUDE=pch.h
  14. PRECOMPILED_PCH=pch.pch
  15. PRECOMPILED_OBJ=pch.obj
  16. PRECOMPILED_CXX=1
  17. TARGETNAME=dskquota
  18. TARGETPATH=obj
  19. TARGETTYPE=DYNLINK
  20. USE_MSVCRT=1
  21. USE_NATIVE_EH=1
  22. USE_VCCOM=1
  23. #
  24. # Define PROFILE to enable IceCAP profiling.
  25. #
  26. !IF "$(PROFILE)" == "1"
  27. USE_ICECAP=1
  28. C_DEFINES=$(C_DEFINES) -DPROFILE
  29. !ENDIF
  30. #
  31. # Add compiler definitions
  32. #
  33. C_DEFINES=$(C_DEFINES) -DWIN32 -DWINNT -DUNICODE
  34. !IF !$(FREEBUILD)
  35. C_DEFINES=$(C_DEFINES) -DDEBUG
  36. !ENDIF
  37. #
  38. # Make warnings equivalent to errors
  39. #
  40. MSC_WARNING_LEVEL=$(MSC_WARNING_LEVEL) /WX
  41. INCLUDES=.;\
  42. ..\common; \
  43. ..\common\$(O);\
  44. $(O);
  45. PASS0_HEADERDIR=$(O)
  46. PASS0_SOURCEDIR=$(O)
  47. MIDL_TLBDIR=$(O)
  48. SOURCES= \
  49. dispatch.idl \
  50. connect.cpp \
  51. control.cpp \
  52. dskquota.cpp \
  53. dskquota.rc \
  54. factory.cpp \
  55. fsobject.cpp \
  56. oadisp.cpp \
  57. sidcache.cpp \
  58. sidname.cpp \
  59. user.cpp \
  60. userenum.cpp \
  61. userbat.cpp \
  62. alloc.cpp
  63. LINKLIBS=..\common\$(O)\common.lib
  64. TARGETLIBS=$(ICECAP_LIBS) \
  65. $(SDK_LIB_PATH)\ntdll.lib \
  66. $(SDK_LIB_PATH)\kernel32.lib \
  67. $(SDK_LIB_PATH)\user32.lib \
  68. $(SDK_LIB_PATH)\advapi32.lib \
  69. $(SDK_LIB_PATH)\netapi32.lib \
  70. $(SDK_LIB_PATH)\ole32.lib \
  71. $(SDK_LIB_PATH)\oleaut32.lib \
  72. $(SDK_LIB_PATH)\secur32.lib \
  73. $(SDK_LIB_PATH)\uuid.lib \
  74. $(SDK_LIB_PATH)\shlwapi.lib