43 lines
848 B
Plaintext
43 lines
848 B
Plaintext
|
TARGETNAME=rasl2tp
|
||
|
TARGETPATH=obj
|
||
|
TARGETTYPE=DRIVER
|
||
|
|
||
|
# System and NDIS wrapper definitions.
|
||
|
#
|
||
|
C_DEFINES=$(C_DEFINES) -DNDIS50 -DNDIS_MINIPORT_DRIVER -DNDIS50_MINIPORT \
|
||
|
-DBINARY_COMPATIBLE=0 -DNT -DPSDEBUG \
|
||
|
-DNDIS_TAPI_CURRENT_VERSION=0x00030000
|
||
|
|
||
|
# L2TP conditional compile options. See code for description.
|
||
|
#
|
||
|
C_DEFINES=$(C_DEFINES) -DNDISBUFFERISMDL=1 -DALLOCATEIRPS=1 -DROUTEWITHREF=1
|
||
|
|
||
|
# Set TESTMODE in your environment to build with talkative debug defaults
|
||
|
# and other private test code enabled.
|
||
|
#
|
||
|
!ifdef TESTMODE
|
||
|
C_DEFINES=$(C_DEFINES) -DTESTMODE
|
||
|
!endif
|
||
|
|
||
|
PRECOMPILED_INCLUDE=l2tpp.h
|
||
|
|
||
|
TARGETLIBS=$(DDK_LIB_PATH)\ndis.lib
|
||
|
|
||
|
INCLUDES=..\inc
|
||
|
|
||
|
SOURCES=\
|
||
|
version.rc \
|
||
|
bpool.c \
|
||
|
cm.c \
|
||
|
debug.c \
|
||
|
fsm.c \
|
||
|
main.c \
|
||
|
md5c.c \
|
||
|
mp.c \
|
||
|
ppool.c \
|
||
|
receive.c \
|
||
|
send.c \
|
||
|
tdix.c \
|
||
|
timer.c \
|
||
|
util.c
|