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.

41 lines
904 B

  1. TARGETNAME=raspppoe
  2. TARGETPATH=obj
  3. TARGETTYPE=DRIVER
  4. # System and NDIS wrapper definitions.
  5. #
  6. C_DEFINES=$(C_DEFINES) -DNDIS50 -DNDIS_MINIPORT_DRIVER -DNDIS40_MINIPORT \
  7. # -DBINARY_COMPATIBLE=0 -DNT -DPSDEBUG \
  8. -DBINARY_COMPATIBLE=0 -DNT \
  9. -DNDIS_TAPI_CURRENT_VERSION=0x00010003 \
  10. # -DTESTMODE
  11. # PPPoE conditional compile options. See code for description.
  12. #
  13. # C_DEFINES=$(C_DEFINES) -DNDISBUFFERISMDL=1 -DALLOCATEIRPS=1 -DROUTEWITHREF=1
  14. # Set TESTMODE in your environment to build with talkative debug defaults
  15. # and other private test code enabled.
  16. #
  17. #!ifdef TESTMODE
  18. #C_DEFINES=$(C_DEFINES) -DTESTMODE
  19. #!endif
  20. #PRECOMPILED_INCLUDE=l2tpp.h
  21. TARGETLIBS=$(DDK_LIB_PATH)\ndis.lib
  22. INCLUDES=.\..\inc
  23. SOURCES=\
  24. version.rc \
  25. main.c \
  26. debug.c \
  27. miniport.c \
  28. packet.c \
  29. tapi.c \
  30. protocol.c \
  31. util.c \
  32. bpool.c \
  33. ppool.c \
  34. timer.c \
  35. fsm.c \