summaryrefslogtreecommitdiff
path: root/apps/nshlib/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-01-24 00:00:31 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-01-24 00:00:31 +0000
commit58a755a096e3c671096f7477320d0f5304415ec1 (patch)
treed46b52654d9246cc5c32531cffe2927bc89e61c1 /apps/nshlib/Makefile
parentd50f3951929ac1458e2b5aaa02e352a92a14c44a (diff)
downloadnuttx-58a755a096e3c671096f7477320d0f5304415ec1.tar.gz
nuttx-58a755a096e3c671096f7477320d0f5304415ec1.tar.bz2
nuttx-58a755a096e3c671096f7477320d0f5304415ec1.zip
If we are using a USB serial console, then NSH must wait for the USB device to be connected
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4327 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/nshlib/Makefile')
-rw-r--r--apps/nshlib/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/nshlib/Makefile b/apps/nshlib/Makefile
index 91ffc2c5e..70c27a414 100644
--- a/apps/nshlib/Makefile
+++ b/apps/nshlib/Makefile
@@ -71,6 +71,9 @@ ifneq ($(CONFIG_NSH_DISABLESCRIPT),y)
CSRCS += nsh_test.c
endif
+ifneq ($(CONFIG_USBDEV),y)
+CSRCS += nsh_usbdev.c
+endif
AOBJS = $(ASRCS:.S=$(OBJEXT))
COBJS = $(CSRCS:.c=$(OBJEXT))