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.3 KiB

  1. # Copyright (c) 1997, Microsoft Corporation, all rights reserved
  2. # Copyright (c) 1997, Parallel Technologies, Inc., all rights reserved
  3. #
  4. # sources
  5. # RAS DirectParallel WAN mini-port/call-manager driver
  6. # BUILD command sources file
  7. #
  8. # 01/07/97 Steve Cobb
  9. # 09/15/97 Jay Lowe, Parallel Technologies, Inc.
  10. TARGETNAME=raspti
  11. TARGETPATH=obj
  12. TARGETTYPE=DRIVER
  13. TARGETLIBS=\
  14. $(DDK_LIB_PATH)\ndis.lib \
  15. $(DDK_LIB_PATH)\ptilink.lib
  16. INCLUDES=..\inc
  17. SOURCES=\
  18. bpool.c \
  19. cm.c \
  20. debug.c \
  21. main.c \
  22. mp.c \
  23. ppool.c \
  24. util.c \
  25. version.rc
  26. # System and NDIS wrapper definitions.
  27. #
  28. C_DEFINES= -DNDIS50
  29. C_DEFINES=$(C_DEFINES) -DNDIS_MINIPORT_DRIVER
  30. C_DEFINES=$(C_DEFINES) -DNDIS50_MINIPORT
  31. C_DEFINES=$(C_DEFINES) -DBINARY_COMPATIBLE=0
  32. C_DEFINES=$(C_DEFINES) -DNT
  33. C_DEFINES=$(C_DEFINES) -DNDIS_TAPI_CURRENT_VERSION=0x00030000
  34. # Set TESTMODE in your environment to build with talkative debug defaults
  35. # and other private test code enabled.
  36. #
  37. !ifdef TESTMODE
  38. C_DEFINES=$(C_DEFINES) -DTESTMODE
  39. !endif
  40. # Set CODFILES in your environment to build .COD files showing the
  41. # compiler's assembly output interspersed with the C source. Unfortunately,
  42. # this prevents .rc files from building.
  43. #
  44. !ifdef CODFILES
  45. C_DEFINES=$(C_DEFINES) -FAcs
  46. !endif