windows-nt/Source/XPSP1/NT/drivers/wdm/bda/ipsink/stream/sources
2020-09-26 16:20:57 +08:00

39 lines
878 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

TARGETNAME=streamip
TARGETPATH=obj
TARGETTYPE=DRIVER
TARGETLIBS= \
$(DDK_LIB_PATH)\stream.lib \
$(DDK_LIB_PATH)\ksguid.lib \
$(SDK_LIB_PATH)\strmiids.lib
C_DEFINES=$(C_DEFINES) -DNDIS_MINIPORT_DRIVER -DNDIS40 -DNDIS40_MINIPORT
C_DEFINES=$(C_DEFINES) -DBINARY_COMPATIBLE=1
!if "$(BUILD_PRODUCT)" == "MILLENNIUM"
C_DEFINES= $(C_DEFINES) -DWIN9X
!endif
INCLUDES=..\inc;$(SDK_PATH)\amovie\inc
USE_MAPSYM=1
SOURCES= \
main.c \
streamip.c \
link.c \
filter.c \
streamip.rc
!ifdef BUILD_SOFTICE_SYMBOLS
CFLAGS=/Zd /Zi -FAcs
LINKER_FLAGS=$(LINKER_FLAGS) -map -debugtype:map
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