summaryrefslogtreecommitdiff
path: root/apps/nshlib/Makefile
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-01-10 15:23:26 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-01-10 15:23:26 -0600
commite1de0b9e18e8224a156a16a9ec43ae4441f11f81 (patch)
tree337030e19ae0016bb1aa68149b8b6bf456cd7c30 /apps/nshlib/Makefile
parent50bc19ba9a0985ceccc988a2bb7961d23f60cd49 (diff)
downloadnuttx-e1de0b9e18e8224a156a16a9ec43ae4441f11f81.tar.gz
nuttx-e1de0b9e18e8224a156a16a9ec43ae4441f11f81.tar.bz2
nuttx-e1de0b9e18e8224a156a16a9ec43ae4441f11f81.zip
NSH: Separate command line parsing from command execution. Add support for multiple, semicolone separated commands on each line
Diffstat (limited to 'apps/nshlib/Makefile')
-rw-r--r--apps/nshlib/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/nshlib/Makefile b/apps/nshlib/Makefile
index 09b6f6122..c5eb5c53d 100644
--- a/apps/nshlib/Makefile
+++ b/apps/nshlib/Makefile
@@ -40,8 +40,9 @@ include $(APPDIR)/Make.defs
# NSH Library
ASRCS =
-CSRCS = nsh_init.c nsh_parse.c nsh_console.c nsh_script.c nsh_fscmds.c
-CSRCS += nsh_ddcmd.c nsh_proccmds.c nsh_mmcmds.c nsh_envcmds.c nsh_dbgcmds.c
+CSRCS = nsh_init.c nsh_parse.c nsh_console.c nsh_script.c
+CSRCS += nsh_command.c nsh_fscmds.c nsh_ddcmd.c nsh_proccmds.c nsh_mmcmds.c
+CSRCS += nsh_envcmds.c nsh_dbgcmds.c
ifeq ($(CONFIG_NFILE_STREAMS),0)
CSRCS += nsh_stdsession.c