Makefile 907 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. # EHCI
  13. #
  14. # Abstract:
  15. #
  16. # This module implements the EHCI USB 2.0 Host Controller Driver.
  17. #
  18. # Author:
  19. #
  20. # Evan Green 18-Mar-2013
  21. #
  22. # Environment:
  23. #
  24. # Kernel
  25. #
  26. ################################################################################
  27. BINARY = ehci.drv
  28. BINARYTYPE = driver
  29. BINPLACE = bin
  30. OBJS = ehci.o \
  31. ehcihc.o \
  32. DYNLIBS = $(BINROOT)/kernel \
  33. $(BINROOT)/usbcore.drv \
  34. include $(SRCROOT)/os/minoca.mk