123456789101112131415161718192021222324252627282930313233343536 |
- ################################################################################
- #
- # Copyright (c) 2013 Minoca Corp. All Rights Reserved
- #
- # Module Name:
- #
- # USB Composite
- #
- # Abstract:
- #
- # This module implements the USB Composite device driver, which exposes
- # child devices for each independent interface of a USB device.
- #
- # Author:
- #
- # Evan Green 20-Mar-2013
- #
- # Environment:
- #
- # Kernel
- #
- ################################################################################
- BINARY = usbcomp.drv
- BINARYTYPE = so
- BINPLACE = bin
- OBJS = usbcomp.o \
- DYNLIBS = $(BINROOT)/kernel \
- $(BINROOT)/usbcore.drv \
- include $(SRCROOT)/os/minoca.mk
|