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.

50 lines
1.1 KiB

  1. TARGETNAME=dlc
  2. TARGETPATH=obj
  3. TARGETTYPE=DRIVER
  4. C_DEFINES=$(C_DEFINES) -DNDIS40
  5. NT_UP=0
  6. TARGETLIBS=$(DDK_LIB_PATH)\ndis.lib
  7. INCLUDES=$(BASE_INC_PATH)
  8. SOURCES=\
  9. dlc.rc \
  10. dlcbuf.c \
  11. dlccncl.c \
  12. dlcdrvr.c \
  13. dlcindc.c \
  14. dlcinfo.c \
  15. dlcopen.c \
  16. dlcque.c \
  17. dlcrcv.c \
  18. dlcreg.c \
  19. dlcreq.c \
  20. dlctimr.c \
  21. dlcxmit.c \
  22. llcaddr.c \
  23. llcinfo.c \
  24. llclib.c \
  25. llclink.c \
  26. llcmain.c \
  27. llcmem.c \
  28. llcndis.c \
  29. llcobj.c \
  30. llcrcv.c \
  31. llcsend.c \
  32. llcsm.c \
  33. llcsmsb.c \
  34. llctimr.c \
  35. refcnt.c
  36. #
  37. # DLC_AND_LLC is set if DLC and LLC share the same driver. This allows us to
  38. # replace some calls with macros for functions that deal with structure elements
  39. # across the DLC/LLC interface
  40. #
  41. C_DEFINES=$(C_DEFINES) -DDLC_AND_LLC=1 -DDLC_UNILOCK=1
  42. #C_DEFINES=$(C_DEFINES) -DDLC_AND_LLC=1 -DDLC_UNILOCK=1 -DLOCK_CHECK=1
  43. #C_DEFINES=$(C_DEFINES) -DDLC_AND_LLC=1 -DDLC_UNILOCK=1 -DLOCK_CHECK=1 -DDEBUG_DISCOVERY=1