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.

73 lines
1.3 KiB

  1. # Active Directory Display Specifier Upgrade Tool
  2. #
  3. # Copyright (c) 2001 Microsoft Corporation
  4. #
  5. # 1 Mar 2001 sburns
  6. TARGETNAME=dspecup
  7. TARGETPATH=obj
  8. TARGETTYPE=LIBRARY
  9. UMTYPE=windows
  10. # always do logging in both fre and chk builds
  11. !MESSAGE defining LOGGING_BUILD
  12. C_DEFINES=$(C_DEFINES) -DLOGGING_BUILD
  13. BURNSLIB_SUFFIX=l
  14. PASS1_PUBLISH= \
  15. {$(O)\dspecup.lib=$(ADMIN_LIB_PATH)\dspecup.lib}
  16. # ISOLATION_AWARE_ENABLED ==> use ui themes, not really needed here, but
  17. # makes burnslib simpler to use accross DLLs and EXEs
  18. C_DEFINES=$(C_DEFINES) -DWIN32 -DWINNT -DUNICODE -D_UNICODE -DWORD97_STYLE -DISOLATION_AWARE_ENABLED
  19. #C_DEFINES=$(C_DEFINES) -DWIN32 -DWINNT -DUNICODE -D_UNICODE -DWORD97_STYLE
  20. INCLUDES= .\; \
  21. $(PROJECT_ROOT)\burnslib\inc; \
  22. $(DS_INC_PATH); \
  23. $(NET_INC_PATH); \
  24. $(SHELL_INC_PATH);
  25. # required for C++ exceptions
  26. USE_NATIVE_EH=1
  27. # required for thread-safe heap
  28. USE_MSVCRT=1
  29. # required to support dynamic_cast
  30. USE_RTTI=1
  31. # required for STL (list, vector, string, etc.)
  32. USE_STL=1
  33. # required for precompiled header
  34. PRECOMPILED_INCLUDE=headers.hxx
  35. PRECOMPILED_CXX=1
  36. # link with vccomsup.lib
  37. USE_VCCOM=1
  38. USE_PDB=1
  39. MSC_WARNING_LEVEL=/W4
  40. SOURCES=\
  41. dspecup.rc \
  42. Analisys.cpp \
  43. constants.cpp \
  44. CSVDSReader.cpp \
  45. repair.cpp \
  46. global.cpp \
  47. dspecup.cpp