summaryrefslogtreecommitdiff
path: root/apps/nshlib/Makefile
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-07-03 16:25:02 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-07-03 16:25:02 -0600
commite64b7e3367eb7356bc7699a6d82c37eb0ec2fade (patch)
tree0126cfaa285b12bfcb2ca2a5cdc51b011e4b21ee /apps/nshlib/Makefile
parente196cbac058b891f899a57e05383e911e848c1b8 (diff)
downloadnuttx-e64b7e3367eb7356bc7699a6d82c37eb0ec2fade.tar.gz
nuttx-e64b7e3367eb7356bc7699a6d82c37eb0ec2fade.tar.bz2
nuttx-e64b7e3367eb7356bc7699a6d82c37eb0ec2fade.zip
NSH: Add an option to take stdin from a USB keyboard device
Diffstat (limited to 'apps/nshlib/Makefile')
-rw-r--r--apps/nshlib/Makefile10
1 files changed, 9 insertions, 1 deletions
diff --git a/apps/nshlib/Makefile b/apps/nshlib/Makefile
index c5eb5c53d..a78299222 100644
--- a/apps/nshlib/Makefile
+++ b/apps/nshlib/Makefile
@@ -90,7 +90,15 @@ CSRCS += nsh_test.c
endif
ifeq ($(CONFIG_USBDEV),y)
-CSRCS += nsh_usbdev.c
+CSRCS += nsh_usbconsole.c
+endif
+
+ifeq ($(CONFIG_USBHOST),y)
+CSRCS += nsh_usbkeyboard.c
+endif
+
+ifeq ($(CONFIG_NSH_USBDEV_TRACE),y)
+CSRCS += nsh_usbtrace.c
endif
ifeq ($(CONFIG_NETUTILS_CODECS),y)