1
0

Makefile 965 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. ################################################################################
  2. #
  3. # Copyright (c) 2012 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. # i8042 (Keyboard)
  13. #
  14. # Abstract:
  15. #
  16. # This module implements a keyboard and mouse driver for the Intel 8042
  17. # keyboard controller.
  18. #
  19. # Author:
  20. #
  21. # Evan Green 20-Dec-2012
  22. #
  23. # Environment:
  24. #
  25. # Kernel
  26. #
  27. ################################################################################
  28. BINARY = i8042.drv
  29. BINARYTYPE = so
  30. BINPLACE = bin
  31. OBJS = i8042.o \
  32. scancode.o \
  33. DYNLIBS = $(BINROOT)/kernel \
  34. $(BINROOT)/usrinput.drv \
  35. DIRS = pl050
  36. include $(SRCROOT)/os/minoca.mk