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.

59 lines
1.2 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. History:
  11. Created 12-Sep-1991 by Richard L Firth (rfirth)
  12. from template created 12-Apr-1990 by Steve Wood (stevewo)
  13. NOTE: Commented description of this file is in \nt\public\oak\bin\sources.tpl
  14. !ENDIF
  15. TARGETNAME=vwipxspx
  16. TARGETPATH=obj
  17. TARGETTYPE=DYNLINK
  18. DLLENTRY=VwDllEntryPoint
  19. TARGETLIBS=$(SDK_LIB_PATH)\kernel32.lib \
  20. $(SDK_LIB_PATH)\ntvdm.lib \
  21. $(SDK_LIB_PATH)\wsock32.lib
  22. USE_MSVCRT=1
  23. INCLUDES=.;$(PROJECT_ROOT)\nw\inc;
  24. SOURCES=vwdll.c \
  25. vwipx.c \
  26. vwspx.c \
  27. vwasync.c \
  28. vwmisc.c \
  29. vwdebug.c \
  30. socket.c \
  31. vwinapi.c \
  32. vwdos.c \
  33. vwipxspx.rc \
  34. util.c
  35. C_DEFINES=-DMAX_OPEN_SOCKETS=150 -DSPX_HACK=1 -DREUSEADDR=1
  36. !ifdef MARS_PCH
  37. PRECOMPILED_INCLUDE=vw.h
  38. PRECOMPILED_PCH=vw.pch
  39. PRECOMPILED_OBJ=vw.obj
  40. !endif