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.

83 lines
2.2 KiB

  1. !IF 0
  2. Copyright (c) 1989-92 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. Author:
  11. Steve Wood (stevewo) 12-Apr-1989
  12. Revision History:
  13. !ENDIF
  14. !include $(PROJECT_ROOT)\iis\place.inc
  15. MAJORCOMP=coadmin
  16. MINORCOMP=coadmin
  17. TARGETNAME=coadmin
  18. TARGETPATH=obj
  19. TARGETTYPE=DYNLINK
  20. DLLENTRY=_DllMainCRTStartup
  21. BUFFER_OVERFLOW_CHECKS=1
  22. MSC_WARNING_LEVEL=/W4 /WX
  23. TARGETLIBS= \
  24. $(SDK_LIB_PATH)\user32.lib \
  25. $(SDK_LIB_PATH)\advapi32.lib \
  26. $(SDK_LIB_PATH)\ole32.lib \
  27. $(SDK_LIB_PATH)\oleaut32.lib \
  28. $(SDK_LIB_PATH)\uuid.lib \
  29. $(SDK_LIB_PATH)\kernel32.lib \
  30. $(SDK_LIB_PATH)\shell32.lib \
  31. $(SDK_LIB_PATH)\rpcrt4.lib \
  32. $(IISBASEDIR)\svcs\iisrtl\$(O)\iisrtl.lib \
  33. ..\interf2\$(O)\admwprox.lib \
  34. ..\..\..\lib\$(O)\iiscrypt.lib \
  35. $(IISBASEDIR)\config\src\core\catinproc_iiscfg\$(O)\iiscfg.lib \
  36. $(IISBASEDIR)\config\src\core\entrypoint\$(O)\cat.lib
  37. INCLUDES=..\inc; \
  38. $(IISBASEDIR)\inc; \
  39. $(IISBASEDIR)\inc\$(O); \
  40. $(IISBASEDIR)\svcs\infocomm\metadata\inc; \
  41. $(IISBASEDIR)\config\src\inc; \
  42. $(IISBASEDIR)\config\src\inc\$(O); \
  43. $(SDK_INC_PATH)\atl30; \
  44. $(IISBASEDIR)\svcs\infocomm\metadata\inc\$(O)
  45. USE_MSVCRT=1
  46. C_DEFINES=-DLOCALSERVER
  47. SOURCES= \
  48. comobj.cxx \
  49. cofact.cxx \
  50. loadadm.cxx \
  51. admacl.cxx \
  52. sink.cxx \
  53. connect.cxx \
  54. globlist.cxx \
  55. cimpexp.cxx \
  56. coadmin.rc
  57. UMTYPE=windows
  58. !IF "$(NTNOPCH)" == ""
  59. PRECOMPILED_INCLUDE=precomp.hxx
  60. PRECOMPILED_PCH=precomp.pch
  61. PRECOMPILED_OBJ=precomp.obj
  62. !ENDIF