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.

104 lines
2.3 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=dskquoui
  18. TARGETPATH=obj
  19. TARGETTYPE=DYNLINK
  20. USE_MSVCRT=1
  21. USE_NATIVE_EH=1
  22. USE_VCCOM=1
  23. #
  24. # Fusion / Side By Side stuff
  25. #
  26. SXS_ASSEMBLY_NAME=dskquoui
  27. SXS_ASSEMBLY_VERSION=1.0
  28. SXS_ASSEMBLY_LANGUAGE=0000
  29. SXS_MANIFEST=dskquoui.manifest
  30. SXS_MANIFEST_IN_RESOURCES=
  31. SXS_NO_BINPLACE=1
  32. #
  33. # Per LAmadio recommendation for shfusion usage
  34. #
  35. LINKER_FLAGS=$(LINKER_FLAGS) -ignore:4049,4217
  36. C_DEFINES=$(C_DEFINES) -DWIN32 -DWINNT -DUNICODE
  37. !IF !$(FREEBUILD)
  38. C_DEFINES=$(C_DEFINES) -DDEBUG
  39. !ENDIF
  40. #
  41. # Define PROFILE to enable IceCAP profiling.
  42. #
  43. !IF "$(PROFILE)" == "1"
  44. USE_ICECAP=1
  45. C_DEFINES=$(C_DEFINES) -DPROFILE
  46. !ENDIF
  47. #
  48. # Make warnings equivalent to errors
  49. #
  50. MSC_WARNING_LEVEL=$(MSC_WARNING_LEVEL) /WX
  51. INCLUDES=.;\
  52. ..\common; \
  53. ..\common\$(O); \
  54. ..\control; \
  55. ..\control\$(O);
  56. SOURCES= extinit.cpp \
  57. details.cpp \
  58. dskquoui.cpp \
  59. dynarray.cpp \
  60. dskquoui.rc \
  61. factory.cpp \
  62. format.cpp \
  63. progress.cpp \
  64. prshtext.cpp \
  65. undo.cpp \
  66. userprop.cpp \
  67. volprop.cpp \
  68. yntoall.cpp \
  69. ownerlst.cpp \
  70. ownerdlg.cpp \
  71. adusrdlg.cpp \
  72. uiutils.cpp \
  73. alloc.cpp
  74. TARGETLIBS=$(ICECAP_LIBS) \
  75. ..\common\$(O)\common.lib\
  76. $(SDK_LIB_PATH)\kernel32.lib \
  77. $(SDK_LIB_PATH)\user32.lib \
  78. $(SDK_LIB_PATH)\gdi32.lib \
  79. $(SDK_LIB_PATH)\advapi32.lib \
  80. $(SDK_LIB_PATH)\ole32.lib \
  81. $(SDK_LIB_PATH)\htmlhelp.lib \
  82. $(SDK_LIB_PATH)\uuid.lib \
  83. $(SHELL_LIB_PATH)\shell32p.lib \
  84. $(SHELL_LIB_PATH)\shfusion.lib \
  85. $(SDK_LIB_PATH)\shlwapi.lib