# =================================================================== # Makefile for USB WDM Driver Example # # Environment: Windows (TM) NT Device Driver Kit # # =================================================================== TARGETNAME=testdrv TARGETTYPE=DRIVER TARGETPATH=$(BASEDIR)\lib # Put the path as it exists in your system to the updated LIB files below. TARGETLIBS=$(BASEDIR)\lib\*\$(DDKBUILDENV)\usbd.lib LINKER_FLAGS = $(LINKER_FLAGS) /map # Your environment may require additional INCLUDE directories here to # find all the Header Files for your project (e.g., the Include directory # supplied by the compilation tools INCLUDES=$(BASEDIR)\src\usb\inc SOURCES=testdrv.c