1234567891011121314151617181920212223242526272829303132333435363738394041 |
- ################################################################################
- #
- # Copyright (c) 2013 Minoca Corp. All Rights Reserved
- #
- # Module Name:
- #
- # User Input
- #
- # Abstract:
- #
- # This module implements the User Input driver. It does not implement
- # support for any specific device, but manages and provides support for
- # all user input devices. Drivers that support user input hardware should
- # link against this driver and utilize its framework for implementing a
- # user input device that the system can interact with in a generic manner.
- #
- # Author:
- #
- # Evan Green 16-Feb-2013
- #
- # Environment:
- #
- # Kernel Mode
- #
- ################################################################################
- BINARY = usrinput.drv
- BINARYTYPE = so
- BINPLACE = bin
- OBJS = uskeys.o \
- usrinput.o \
- TARGETLIBS = $(OBJROOT)/os/lib/termlib/termlib.a \
- DYNLIBS = $(BINROOT)/kernel \
- include $(SRCROOT)/os/minoca.mk
|