1
0

Makefile 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. ################################################################################
  2. #
  3. # Copyright (c) 2013 Minoca Corp. All Rights Reserved
  4. #
  5. # Module Name:
  6. #
  7. # USB
  8. #
  9. # Abstract:
  10. #
  11. # This directory contains Universal Serial Bus (USB) related drivers,
  12. # including the USB core support library, host controller implementations,
  13. # generic device class drivers, and specific USB device drivers.
  14. #
  15. # Author:
  16. #
  17. # Evan Green 13-Jan-2013
  18. #
  19. # Environment:
  20. #
  21. # Kernel
  22. #
  23. ################################################################################
  24. USB_HOST_CONTROLLERS = am3usb \
  25. dwhci \
  26. ehci \
  27. uhci \
  28. USB_CLASS_DRIVERS = usbcomp \
  29. usbhub \
  30. usbmass \
  31. USB_DEVICE_DRIVERS = onering \
  32. usbkbd \
  33. DIRS = usbcore \
  34. $(USB_CLASS_DRIVERS) \
  35. $(USB_DEVICE_DRIVERS) \
  36. $(USB_HOST_CONTROLLERS) \
  37. include $(SRCROOT)/os/minoca.mk
  38. $(USB_HOST_CONTROLLERS) $(USB_CLASS_DRIVERS) $(USB_DEVICE_DRIVERS): usbcore