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.

42 lines
848 B

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