1
0

Makefile 766 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. ################################################################################
  2. #
  3. # Copyright (c) 2013 Minoca Corp. All Rights Reserved
  4. #
  5. # Module Name:
  6. #
  7. # PL-050 Keyboard
  8. #
  9. # Abstract:
  10. #
  11. # This module implements a keyboard and mouse driver for the ARM
  12. # PrimeCell PL050 keyboard and mouse controller.
  13. #
  14. # Author:
  15. #
  16. # Evan Green 22-Sep-2013
  17. #
  18. # Environment:
  19. #
  20. # Kernel
  21. #
  22. ################################################################################
  23. BINARY = pl050.drv
  24. BINARYTYPE = so
  25. BINPLACE = bin
  26. INCLUDES += $(SRCDIR)/..;
  27. VPATH += $(SRCDIR)/..:
  28. OBJS = pl050.o \
  29. scancode.o \
  30. DYNLIBS = $(BINROOT)/kernel \
  31. $(BINROOT)/usrinput.drv \
  32. include $(SRCROOT)/os/minoca.mk