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
|
|
|
#
|
2011-03-12 16:36:28 +01:00
|
|
|
# Copyright (C) 2007, 2008, 2011 Gregory Nutt. All rights reserved.
|
2007-08-27 01:12:17 +02:00
|
|
|
# Author: Gregory Nutt <spudmonkey@racsa.co.cr>
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
|
|
|
|
SOCK_ASRCS =
|
|
|
|
SOCK_CSRCS = bind.c connect.c getsockname.c recv.c recvfrom.c socket.c \
|
2011-05-30 16:26:04 +02:00
|
|
|
sendto.c net_sockets.c net_close.c net_dup.c net_dup2.c net_clone.c \
|
2009-07-19 00:59:44 +02:00
|
|
|
net_vfcntl.c
|
2007-11-22 19:36:46 +01:00
|
|
|
|
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
|
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)
|
2011-06-02 17:05:48 +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
|
2011-03-12 16:36:28 +01:00
|
|
|
ifneq ($(CONFIG_NET_SLIP),y)
|
2011-06-02 17:05:48 +02:00
|
|
|
SOCK_CSRCS += net_arptimer.c
|
2011-03-12 16:36:28 +01:00
|
|
|
endif
|
2007-09-08 21:50:59 +02:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2011-06-02 17:05:48 +02:00
|
|
|
# Support for network access using streams
|
|
|
|
|
|
|
|
ifneq ($(CONFIG_NFILE_STREAMS),0)
|
|
|
|
SOCK_CSRCS += net_checksd.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
# 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 \
|
2011-03-25 16:15:59 +01:00
|
|
|
netdev_foreach.c netdev_unregister.c
|
2007-09-16 19:46:25 +02:00
|
|
|
|
2007-08-27 01:12:17 +02:00
|
|
|
include uip/Make.defs
|
|
|
|
endif
|
|
|
|
|
2007-09-16 19:46:25 +02:00
|
|
|
ASRCS = $(SOCK_ASRCS) $(NETDEV_ASRCS) $(UIP_ASRCS)
|
2007-08-27 01:12:17 +02:00
|
|
|
AOBJS = $(ASRCS:.S=$(OBJEXT))
|
|
|
|
|
2007-09-16 19:46:25 +02:00
|
|
|
CSRCS = $(SOCK_CSRCS) $(NETDEV_CSRCS) $(UIP_CSRCS)
|
2007-08-27 01:12:17 +02:00
|
|
|
COBJS = $(CSRCS:.c=$(OBJEXT))
|
|
|
|
|
|
|
|
SRCS = $(ASRCS) $(CSRCS)
|
|
|
|
OBJS = $(AOBJS) $(COBJS)
|
|
|
|
|
|
|
|
BIN = libnet$(LIBEXT)
|
|
|
|
|
|
|
|
VPATH = uip
|
|
|
|
|
|
|
|
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)
|
2008-01-08 14:41:00 +01:00
|
|
|
@( for obj in $(OBJS) ; do \
|
2008-01-08 18:06:21 +01:00
|
|
|
$(call ARCHIVE, $@, $${obj}); \
|
2007-08-27 01:12:17 +02:00
|
|
|
done ; )
|
|
|
|
|
|
|
|
.depend: Makefile $(SRCS)
|
2007-09-01 20:06:15 +02:00
|
|
|
ifeq ($(CONFIG_NET),y)
|
2008-01-08 14:41:00 +01:00
|
|
|
@$(MKDEP) --dep-path . --dep-path uip $(CC) -- $(CFLAGS) -- $(SRCS) >Make.dep
|
2007-08-27 01:12:17 +02:00
|
|
|
endif
|
2008-01-08 14:41:00 +01:00
|
|
|
@touch $@
|
2007-08-27 01:12:17 +02:00
|
|
|
|
|
|
|
depend: .depend
|
|
|
|
|
|
|
|
clean:
|
2008-01-10 19:23:08 +01:00
|
|
|
@rm -f $(BIN) *~ .*.swp
|
|
|
|
@rm -f uip/*~ uip/.*.swp
|
|
|
|
$(call CLEAN)
|
2007-08-27 01:12:17 +02:00
|
|
|
|
|
|
|
distclean: clean
|
2008-08-29 20:29:42 +02:00
|
|
|
@rm -f Make.dep .depend
|
2007-08-27 01:12:17 +02:00
|
|
|
|
|
|
|
-include Make.dep
|