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.

53 lines
1.4 KiB

  1. #=============================================================================
  2. # Copyright (c) 1999, Microsoft Corporation
  3. #
  4. # Module Name:
  5. #
  6. # sample\sources
  7. #
  8. # Abstract:
  9. #
  10. # The file contains build instructions for the netsh extension for a
  11. # sample protocol.
  12. #
  13. #=============================================================================
  14. TARGETNAME=ipsamplemn
  15. TARGETPATH=obj
  16. TARGETTYPE=DYNLINK
  17. USE_MSVCRT=1
  18. MSC_WARNING_LEVEL=/W3 /WX
  19. UMTYPE=console
  20. TARGETLIBS=\
  21. $(SDK_LIB_PATH)\kernel32.lib \
  22. $(SDK_LIB_PATH)\advapi32.lib \
  23. $(SDK_LIB_PATH)\user32.lib \
  24. $(SDK_LIB_PATH)\ws2_32.lib \
  25. $(SDK_LIB_PATH)\mprapi.lib \
  26. $(SDK_LIB_PATH)\ipmontr.lib
  27. DLLENTRY=DllMain
  28. C_DEFINES=$(C_DEFINES) -DMPR50=1 -D_UNICODE -DUNICODE
  29. INCLUDES=\
  30. .; \
  31. $(BASEDIR)\public\sdk\inc; \
  32. $(BASEDIR)\public\sdk\inc\crt;
  33. SOURCES=\
  34. utils.c \
  35. common.c \
  36. sample.c \
  37. samplecfg.c \
  38. samplegetopt.c \
  39. samplemib.c \
  40. ipsamplemn.rc
  41. PRECOMPILED_INCLUDE=precomp.h
  42. PRECOMPILED_PCH=precomp.pch
  43. PRECOMPILED_OBJ=precomp.obj