Makefile 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 Core
  13. #
  14. # Abstract:
  15. #
  16. # This module implements the USB core. It manages host controllers,
  17. # enumerates devices, manages transfers, and generally provides the high
  18. # level glue needed to make USB work.
  19. #
  20. # Author:
  21. #
  22. # Evan Green 15-Jan-2013
  23. #
  24. # Environment:
  25. #
  26. # Kernel
  27. #
  28. ################################################################################
  29. BINARY = usbcore.drv
  30. BINARYTYPE = driver
  31. BINPLACE = bin
  32. OBJS = enum.o \
  33. hub.o \
  34. usbcore.o \
  35. usbhost.o \
  36. DYNLIBS = $(BINROOT)/kernel \
  37. include $(SRCROOT)/os/minoca.mk