Makefile 718 B

123456789101112131415161718192021222324252627282930313233343536
  1. ################################################################################
  2. #
  3. # Copyright (c) 2013 Minoca Corp. All Rights Reserved
  4. #
  5. # Module Name:
  6. #
  7. # USB Composite
  8. #
  9. # Abstract:
  10. #
  11. # This module implements the USB Composite device driver, which exposes
  12. # child devices for each independent interface of a USB device.
  13. #
  14. # Author:
  15. #
  16. # Evan Green 20-Mar-2013
  17. #
  18. # Environment:
  19. #
  20. # Kernel
  21. #
  22. ################################################################################
  23. BINARY = usbcomp.drv
  24. BINARYTYPE = so
  25. BINPLACE = bin
  26. OBJS = usbcomp.o \
  27. DYNLIBS = $(BINROOT)/kernel \
  28. $(BINROOT)/usbcore.drv \
  29. include $(SRCROOT)/os/minoca.mk