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.

75 lines
1.6 KiB

  1. !IF 0
  2. Copyright (c) 1989 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. MuraliK 15-Nov-1995 Removed NetApi/unwanted libs (undoc apis removed)
  14. !ENDIF
  15. !include ..\..\..\..\place.inc
  16. MAJORCOMP=internet
  17. MINORCOMP=infoadmn
  18. WIN32_WINNT_VERSION=0x500
  19. TARGETNAME=infoadmn
  20. TARGETPATH=obj
  21. TARGETTYPE=DYNLINK
  22. TARGETLIBS=\
  23. $(SDK_LIB_PATH)\kernel32.lib \
  24. $(SDK_LIB_PATH)\user32.lib \
  25. $(SDK_LIB_PATH)\advapi32.lib \
  26. $(SDK_LIB_PATH)\rpcrt4.lib \
  27. $(SDK_LIB_PATH)\ws2_32.lib \
  28. $(IISBASEDIR)\svcs\iisrtl\$(O)\iisrtl.lib \
  29. # Treat warnings as errors
  30. MSC_WARNING_LEVEL = /W3 /WX
  31. USE_MSVCRT=1
  32. INCLUDES=..\idl;..\idl\$(O); \
  33. $(IISBASEDIR)\inc; \
  34. $(NET_INC_PATH)
  35. SOURCES= \
  36. info_cli_stub.c \
  37. infoadmn.rc \
  38. infobind.c \
  39. infostub.c \
  40. C_DEFINES=-DRPC_NO_WINDOWS_H
  41. !IFDEF BUILD_AS_CONSOLE_APP
  42. UMAPPL=infotest
  43. UMTYPE=console
  44. UMLIBS=\
  45. $(SDK_LIB_PATH)\kernel32.lib \
  46. $(SDK_LIB_PATH)\user32.lib \
  47. $(SDK_LIB_PATH)\advapi32.lib \
  48. $(SDK_LIB_PATH)\rpcrt4.lib \
  49. $(IISBASEDIR)\svcs\infocomm\info\client\$(O)\infoadmn.lib \
  50. ..\..\..\lib\*\inetrtl.lib \
  51. !ENDIF