mirror of https://github.com/tongzx/nt5src
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.
36 lines
738 B
36 lines
738 B
TARGETNAME=slip
|
|
TARGETPATH=obj
|
|
TARGETTYPE=DRIVER
|
|
|
|
TARGETLIBS= \
|
|
$(DDK_LIB_PATH)\stream.lib \
|
|
$(DDK_LIB_PATH)\ksguid.lib \
|
|
$(DDK_LIB_PATH)\ks.lib \
|
|
$(DDK_LIB_PATH)\dxapi.lib
|
|
|
|
C_DEFINES=$(C_DEFINES) -DBINARY_COMPATIBLE=1
|
|
|
|
INCLUDES=$(SDK_PATH)\amovie\inc
|
|
|
|
LINKER_FLAGS=$(LINKER_FLAGS) -map -debugtype:map
|
|
|
|
USE_MAPSYM=1
|
|
|
|
SOURCES= \
|
|
MAIN.C \
|
|
SLIP.C \
|
|
FILTER.C \
|
|
RECV.C \
|
|
MPEGCRC.C \
|
|
SLIP.RC
|
|
|
|
!ifdef BUILD_SOFTICE_SYMBOLS
|
|
CFLAGS=/Zd /Zi
|
|
|
|
TARGETPATHEX=$(TARGETPATH)\$(TARGET_DIRECTORY)
|
|
NTTARGETFILES=$(TARGETPATHEX)\$(TARGETNAME).nms
|
|
|
|
# .nms must be built before .dbg because splitsym removes symbols from target.
|
|
NTTARGETFILES= $(TARGETPATHEX)\$(TARGETNAME).nms $(NTTARGETFILES)
|
|
!endif
|
|
|