2007-09-03 22:34:44 +02:00
|
|
|
############################################################################
|
2007-12-11 15:23:16 +01:00
|
|
|
# net/Makefile
|
2007-08-27 01:12:17 +02:00
|
|
|
#
|
2014-01-14 00:11:01 +01:00
|
|
|
# Copyright (C) 2007, 2008, 2011-2014 Gregory Nutt. All rights reserved.
|
2012-03-13 21:51:48 +01:00
|
|
|
# Author: Gregory Nutt <gnutt@nuttx.org>
|
2007-08-27 01:12:17 +02:00
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
#
|
|
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in
|
|
|
|
# the documentation and/or other materials provided with the
|
|
|
|
# distribution.
|
2007-08-29 01:38:15 +02:00
|
|
|
# 3. Neither the name NuttX nor the names of its contributors may be
|
2007-08-27 01:12:17 +02:00
|
|
|
# used to endorse or promote products derived from this software
|
|
|
|
# without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
#
|
2007-09-03 22:34:44 +02:00
|
|
|
############################################################################
|
2007-08-27 01:12:17 +02:00
|
|
|
|
|
|
|
-include $(TOPDIR)/Make.defs
|
|
|
|
|
2007-09-01 20:06:15 +02:00
|
|
|
ifeq ($(CONFIG_NET),y)
|
2011-06-02 17:05:48 +02:00
|
|
|
|
|
|
|
# Basic networking support
|
|
|
|
|
2013-10-05 20:05:51 +02:00
|
|
|
SOCK_ASRCS =
|
|
|
|
SOCK_CSRCS = bind.c connect.c getsockname.c recv.c recvfrom.c socket.c
|
2014-01-14 00:11:01 +01:00
|
|
|
SOCK_CSRCS += sendto.c net_sockets.c net_close.c net_dup.c net_dup2.c
|
2013-10-05 20:05:51 +02:00
|
|
|
SOCK_CSRCS += net_clone.c net_vfcntl.c
|
2007-11-22 19:36:46 +01:00
|
|
|
|
2014-05-30 19:14:06 +02:00
|
|
|
VPATH =
|
|
|
|
DEPPATH = --dep-path .
|
|
|
|
|
2011-06-02 17:05:48 +02:00
|
|
|
# TCP/IP support
|
|
|
|
|
2007-11-22 19:36:46 +01:00
|
|
|
ifeq ($(CONFIG_NET_TCP),y)
|
2012-02-22 17:03:10 +01:00
|
|
|
SOCK_CSRCS += send.c listen.c accept.c net_monitor.c
|
2014-01-14 00:11:01 +01:00
|
|
|
|
2014-01-14 16:43:59 +01:00
|
|
|
ifeq ($(CONFIG_NET_TCP_WRITE_BUFFERS),y)
|
2014-01-14 00:11:01 +01:00
|
|
|
SOCK_CSRCS += net_send_buffered.c
|
|
|
|
else
|
|
|
|
SOCK_CSRCS += net_send_unbuffered.c
|
|
|
|
endif
|
2007-11-22 19:36:46 +01:00
|
|
|
endif
|
2007-09-08 21:50:59 +02:00
|
|
|
|
2011-06-02 17:05:48 +02:00
|
|
|
# Socket options
|
|
|
|
|
2007-09-08 21:50:59 +02:00
|
|
|
ifeq ($(CONFIG_NET_SOCKOPTS),y)
|
2013-09-06 17:18:07 +02:00
|
|
|
SOCK_CSRCS += setsockopt.c getsockopt.c
|
2007-09-08 21:50:59 +02:00
|
|
|
ifneq ($(CONFIG_DISABLE_CLOCK),y)
|
2011-06-02 17:05:48 +02:00
|
|
|
SOCK_CSRCS += net_timeo.c net_dsec2timeval.c net_timeval2dsec.c
|
2007-09-08 21:50:59 +02:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2013-10-02 03:13:06 +02:00
|
|
|
# Routing table support
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_NET_ROUTE),y)
|
2013-10-05 20:05:51 +02:00
|
|
|
SOCK_CSRCS += net_addroute.c net_allocroute.c net_delroute.c
|
2013-10-06 03:08:57 +02:00
|
|
|
SOCK_CSRCS += net_foreachroute.c net_router.c netdev_router.c
|
2013-10-02 03:13:06 +02:00
|
|
|
endif
|
|
|
|
|
2011-06-02 17:05:48 +02:00
|
|
|
# Support for network access using streams
|
|
|
|
|
|
|
|
ifneq ($(CONFIG_NFILE_STREAMS),0)
|
2013-09-06 17:18:07 +02:00
|
|
|
SOCK_CSRCS += net_checksd.c
|
2011-06-02 17:05:48 +02:00
|
|
|
endif
|
|
|
|
|
2013-09-28 22:47:49 +02:00
|
|
|
# Support for sendfile()
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_NET_SENDFILE),y)
|
|
|
|
SOCK_CSRCS += net_sendfile.c
|
|
|
|
endif
|
|
|
|
|
2011-06-02 17:05:48 +02:00
|
|
|
# Support for operations on network devices
|
|
|
|
|
|
|
|
NETDEV_ASRCS =
|
|
|
|
NETDEV_CSRCS = netdev_register.c netdev_ioctl.c net_poll.c netdev_txnotify.c \
|
2008-12-12 19:33:36 +01:00
|
|
|
netdev_findbyname.c netdev_findbyaddr.c netdev_count.c \
|
2014-01-21 17:21:45 +01:00
|
|
|
netdev_foreach.c netdev_unregister.c netdev_sem.c \
|
|
|
|
netdev_carrier.c
|
2007-09-16 19:46:25 +02:00
|
|
|
|
2013-09-06 17:18:07 +02:00
|
|
|
ifeq ($(CONFIG_NET_RXAVAIL),y)
|
2013-09-06 17:34:14 +02:00
|
|
|
NETDEV_CSRCS += netdev_rxnotify.c
|
2013-09-06 17:18:07 +02:00
|
|
|
endif
|
|
|
|
|
2014-06-03 20:41:34 +02:00
|
|
|
include iob/Make.defs
|
2014-05-30 19:14:06 +02:00
|
|
|
include arp/Make.defs
|
2014-05-30 21:32:10 +02:00
|
|
|
include icmp/Make.defs
|
2014-05-30 21:05:19 +02:00
|
|
|
include igmp/Make.defs
|
2007-08-27 01:12:17 +02:00
|
|
|
include uip/Make.defs
|
|
|
|
endif
|
|
|
|
|
2014-05-30 21:05:19 +02:00
|
|
|
ASRCS = $(SOCK_ASRCS) $(NETDEV_ASRCS) $(NET_ASRCS)
|
2007-08-27 01:12:17 +02:00
|
|
|
AOBJS = $(ASRCS:.S=$(OBJEXT))
|
|
|
|
|
2014-05-30 21:05:19 +02:00
|
|
|
CSRCS = $(SOCK_CSRCS) $(NETDEV_CSRCS) $(NET_CSRCS)
|
2007-08-27 01:12:17 +02:00
|
|
|
COBJS = $(CSRCS:.c=$(OBJEXT))
|
|
|
|
|
|
|
|
SRCS = $(ASRCS) $(CSRCS)
|
|
|
|
OBJS = $(AOBJS) $(COBJS)
|
|
|
|
|
|
|
|
BIN = libnet$(LIBEXT)
|
|
|
|
|
|
|
|
all: $(BIN)
|
|
|
|
|
|
|
|
$(AOBJS): %$(OBJEXT): %.S
|
2008-01-08 18:06:21 +01:00
|
|
|
$(call ASSEMBLE, $<, $@)
|
2007-08-27 01:12:17 +02:00
|
|
|
|
|
|
|
$(COBJS): %$(OBJEXT): %.c
|
2008-01-08 18:06:21 +01:00
|
|
|
$(call COMPILE, $<, $@)
|
2007-08-27 01:12:17 +02:00
|
|
|
|
|
|
|
$(BIN): $(OBJS)
|
2012-11-15 18:43:29 +01:00
|
|
|
$(call ARCHIVE, $@, $(OBJS))
|
2007-08-27 01:12:17 +02:00
|
|
|
|
|
|
|
.depend: Makefile $(SRCS)
|
2007-09-01 20:06:15 +02:00
|
|
|
ifeq ($(CONFIG_NET),y)
|
2014-05-30 19:14:06 +02:00
|
|
|
$(Q) $(MKDEP) $(DEPPATH) "$(CC)" -- $(CFLAGS) -- $(SRCS) >Make.dep
|
2007-08-27 01:12:17 +02:00
|
|
|
endif
|
2012-11-11 19:36:28 +01:00
|
|
|
$(Q) touch $@
|
2007-08-27 01:12:17 +02:00
|
|
|
|
|
|
|
depend: .depend
|
|
|
|
|
|
|
|
clean:
|
2012-11-20 16:47:41 +01:00
|
|
|
$(call DELFILE, $(BIN))
|
2008-01-10 19:23:08 +01:00
|
|
|
$(call CLEAN)
|
2007-08-27 01:12:17 +02:00
|
|
|
|
|
|
|
distclean: clean
|
2012-11-20 16:47:41 +01:00
|
|
|
$(call DELFILE, Make.dep)
|
|
|
|
$(call DELFILE, .depend)
|
2007-08-27 01:12:17 +02:00
|
|
|
|
|
|
|
-include Make.dep
|