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
53 lines
1.3 KiB
# Copyright (c) 1997, Microsoft Corporation, all rights reserved
|
|
# Copyright (c) 1997, Parallel Technologies, Inc., all rights reserved
|
|
#
|
|
# sources
|
|
# RAS DirectParallel WAN mini-port/call-manager driver
|
|
# BUILD command sources file
|
|
#
|
|
# 01/07/97 Steve Cobb
|
|
# 09/15/97 Jay Lowe, Parallel Technologies, Inc.
|
|
|
|
TARGETNAME=raspti
|
|
TARGETPATH=obj
|
|
TARGETTYPE=DRIVER
|
|
|
|
TARGETLIBS=\
|
|
$(DDK_LIB_PATH)\ndis.lib \
|
|
$(DDK_LIB_PATH)\ptilink.lib
|
|
|
|
INCLUDES=..\inc
|
|
|
|
SOURCES=\
|
|
bpool.c \
|
|
cm.c \
|
|
debug.c \
|
|
main.c \
|
|
mp.c \
|
|
ppool.c \
|
|
util.c \
|
|
version.rc
|
|
|
|
# System and NDIS wrapper definitions.
|
|
#
|
|
C_DEFINES= -DNDIS50
|
|
C_DEFINES=$(C_DEFINES) -DNDIS_MINIPORT_DRIVER
|
|
C_DEFINES=$(C_DEFINES) -DNDIS50_MINIPORT
|
|
C_DEFINES=$(C_DEFINES) -DBINARY_COMPATIBLE=0
|
|
C_DEFINES=$(C_DEFINES) -DNT
|
|
C_DEFINES=$(C_DEFINES) -DNDIS_TAPI_CURRENT_VERSION=0x00030000
|
|
|
|
# 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
|
|
|
|
# Set CODFILES in your environment to build .COD files showing the
|
|
# compiler's assembly output interspersed with the C source. Unfortunately,
|
|
# this prevents .rc files from building.
|
|
#
|
|
!ifdef CODFILES
|
|
C_DEFINES=$(C_DEFINES) -FAcs
|
|
!endif
|