1
0

Makefile 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. ################################################################################
  2. #
  3. # Copyright (c) 2013 Minoca Corp.
  4. #
  5. # This file is licensed under the terms of the GNU General Public License
  6. # version 3. Alternative licensing terms are available. Contact
  7. # info@minocacorp.com for details. See the LICENSE file at the root of this
  8. # project for complete licensing information.
  9. #
  10. # Module Name:
  11. #
  12. # USB
  13. #
  14. # Abstract:
  15. #
  16. # This directory contains Universal Serial Bus (USB) related drivers,
  17. # including the USB core support library, host controller implementations,
  18. # generic device class drivers, and specific USB device drivers.
  19. #
  20. # Author:
  21. #
  22. # Evan Green 13-Jan-2013
  23. #
  24. # Environment:
  25. #
  26. # Kernel
  27. #
  28. ################################################################################
  29. USB_HOST_CONTROLLERS = am3usb \
  30. dwhci \
  31. ehci \
  32. uhci \
  33. USB_CLASS_DRIVERS = usbcomp \
  34. usbhub \
  35. usbmass \
  36. USB_DEVICE_DRIVERS = onering \
  37. usbkbd \
  38. DIRS = usbcore \
  39. $(USB_CLASS_DRIVERS) \
  40. $(USB_DEVICE_DRIVERS) \
  41. $(USB_HOST_CONTROLLERS) \
  42. include $(SRCROOT)/os/minoca.mk
  43. $(USB_HOST_CONTROLLERS) $(USB_CLASS_DRIVERS) $(USB_DEVICE_DRIVERS): usbcore