# i219 - XP x86 WDK7600 "alive" skeleton (NDIS 5.1 miniport-style)
#
# This builds and returns SUCCESS from MiniportInitialize.
# It still does *no real hardware* (no PCI/MMIO/PHY), but it implements
# minimal OIDs so you can see NDIS/stack behavior and add real code later.
#

TARGETNAME=i219
TARGETTYPE=DRIVER
TARGETPATH=OBJ

SOURCES=i219.c

# Select NDIS 5.1 miniport API for XP (WDK7600 ndis.h)
C_DEFINES=$(C_DEFINES) -DNDIS_MINIPORT_DRIVER=1 -DNDIS51_MINIPORT=1 -DDBG=0

# Link against NDIS
TARGETLIBS=$(DDK_LIB_PATH)\ndis.lib
