Makefile 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. # User Input
  13. #
  14. # Abstract:
  15. #
  16. # This module implements the User Input driver. It does not implement
  17. # support for any specific device, but manages and provides support for
  18. # all user input devices. Drivers that support user input hardware should
  19. # link against this driver and utilize its framework for implementing a
  20. # user input device that the system can interact with in a generic manner.
  21. #
  22. # Author:
  23. #
  24. # Evan Green 16-Feb-2013
  25. #
  26. # Environment:
  27. #
  28. # Kernel Mode
  29. #
  30. ################################################################################
  31. BINARY = usrinput.drv
  32. BINARYTYPE = driver
  33. BINPLACE = bin
  34. OBJS = uskeys.o \
  35. usrinput.o \
  36. TARGETLIBS = $(OBJROOT)/os/lib/termlib/termlib.a \
  37. DYNLIBS = $(BINROOT)/kernel \
  38. include $(SRCROOT)/os/minoca.mk