summaryrefslogtreecommitdiff
path: root/apps/netutils/telnetd/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-01-30 21:29:59 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-01-30 21:29:59 +0000
commit9ddfc032d424842691e1f4a30960547b578c9036 (patch)
tree3e0841836e96d7f053e3ee20f9caf4d1bd515dfc /apps/netutils/telnetd/Makefile
parentd1143e0418c1cd3cbf447e8f49c57bda0e81d75c (diff)
downloadpx4-nuttx-9ddfc032d424842691e1f4a30960547b578c9036.tar.gz
px4-nuttx-9ddfc032d424842691e1f4a30960547b578c9036.tar.bz2
px4-nuttx-9ddfc032d424842691e1f4a30960547b578c9036.zip
Add new psock layer; telnet session is now wrapped in a character device
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4347 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/netutils/telnetd/Makefile')
-rw-r--r--apps/netutils/telnetd/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/netutils/telnetd/Makefile b/apps/netutils/telnetd/Makefile
index cba7f0c70..fac6df571 100644
--- a/apps/netutils/telnetd/Makefile
+++ b/apps/netutils/telnetd/Makefile
@@ -1,8 +1,8 @@
############################################################################
# apps/netutils/telnetd/Makefile
#
-# Copyright (C) 2011 Gregory Nutt. All rights reserved.
-# Author: Gregory Nutt <spudmonkey@racsa.co.cr>
+# Copyright (C) 2011-2012 Gregory Nutt. All rights reserved.
+# Author: Gregory Nutt <gnutt@nuttx.org>
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
@@ -43,7 +43,7 @@ ASRCS =
CSRCS =
ifeq ($(CONFIG_NET_TCP),y)
-CSRCS += telnetd.c shell.c
+CSRCS += telnetd_daemon.c telnetd_driver.c
endif
AOBJS = $(ASRCS:.S=$(OBJEXT))