summaryrefslogtreecommitdiff
path: root/apps/nshlib/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-09-01 15:09:49 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-09-01 15:09:49 +0000
commit0c65db21d1bdc2ca3419f947288e08033f890662 (patch)
treec5a3ae24fb1e857edd2ea9b40faddf11a2be7024 /apps/nshlib/Makefile
parent0ec4fcc28f0c8601c4205d73a7e7f93f44f3c8e3 (diff)
downloadnuttx-0c65db21d1bdc2ca3419f947288e08033f890662.tar.gz
nuttx-0c65db21d1bdc2ca3419f947288e08033f890662.tar.bz2
nuttx-0c65db21d1bdc2ca3419f947288e08033f890662.zip
Add NSH date command
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3932 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/nshlib/Makefile')
-rw-r--r--apps/nshlib/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/nshlib/Makefile b/apps/nshlib/Makefile
index a838f9589..91ffc2c5e 100644
--- a/apps/nshlib/Makefile
+++ b/apps/nshlib/Makefile
@@ -55,6 +55,10 @@ ifeq ($(CONFIG_NET),y)
CSRCS += nsh_netinit.c nsh_netcmds.c
endif
+ifeq ($(CONFIG_RTC),y)
+CSRCS += nsh_timcmds.c
+endif
+
ifeq ($(CONFIG_NSH_CONSOLE),y)
CSRCS += nsh_serial.c
endif
@@ -67,6 +71,7 @@ ifneq ($(CONFIG_NSH_DISABLESCRIPT),y)
CSRCS += nsh_test.c
endif
+
AOBJS = $(ASRCS:.S=$(OBJEXT))
COBJS = $(CSRCS:.c=$(OBJEXT))