summaryrefslogtreecommitdiff
path: root/nuttx/net/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/net/Makefile')
-rw-r--r--nuttx/net/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/nuttx/net/Makefile b/nuttx/net/Makefile
index 25b5c46df..089d45513 100644
--- a/nuttx/net/Makefile
+++ b/nuttx/net/Makefile
@@ -1,4 +1,4 @@
-############################################################
+############################################################################
# Makefile
#
# Copyright (C) 2007 Gregory Nutt. All rights reserved.
@@ -31,7 +31,7 @@
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
-############################################################
+############################################################################
-include $(TOPDIR)/Make.defs
CFLAGS += -I./uip
@@ -40,7 +40,8 @@ MKDEP = $(TOPDIR)/tools/mkdeps.sh
ifeq ($(CONFIG_NET),y)
STD_ASRCS =
-STD_CSRCS = socket.c bind.c connect.c net_sockets.c
+STD_CSRCS = socket.c bind.c connect.c send.c sendto.c recv.c recvfrom.c \
+ net_sockets.c net-close.c
include uip/Make.defs
endif