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
|
|
|
#
|
2016-05-10 23:44:06 +02:00
|
|
|
# Copyright (C) 2007, 2008, 2011-2016 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
|
|
|
|
|
2014-06-26 22:36:24 +02:00
|
|
|
NET_ASRCS =
|
|
|
|
NET_CSRCS = net_initialize.c
|
|
|
|
|
|
|
|
# Socket support
|
|
|
|
|
2013-10-05 20:05:51 +02:00
|
|
|
SOCK_ASRCS =
|
2014-06-29 00:41:55 +02:00
|
|
|
SOCK_CSRCS =
|
2013-09-28 22:47:49 +02:00
|
|
|
|
2011-06-02 17:05:48 +02:00
|
|
|
# Support for operations on network devices
|
|
|
|
|
|
|
|
NETDEV_ASRCS =
|
2014-06-27 17:56:45 +02:00
|
|
|
NETDEV_CSRCS =
|
2013-09-06 17:18:07 +02:00
|
|
|
|
2014-06-29 00:41:55 +02:00
|
|
|
VPATH =
|
|
|
|
DEPPATH = --dep-path .
|
|
|
|
|
|
|
|
include socket/Make.defs
|
2014-06-27 17:56:45 +02:00
|
|
|
include netdev/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
|
2015-01-14 21:26:50 +01:00
|
|
|
include icmpv6/Make.defs
|
2015-01-19 17:36:22 +01:00
|
|
|
include neighbor/Make.defs
|
2014-05-30 21:05:19 +02:00
|
|
|
include igmp/Make.defs
|
2015-01-24 21:03:32 +01:00
|
|
|
include pkt/Make.defs
|
|
|
|
include local/Make.defs
|
2014-06-18 18:18:53 +02:00
|
|
|
include tcp/Make.defs
|
2014-06-18 18:50:09 +02:00
|
|
|
include udp/Make.defs
|
2017-03-27 22:53:52 +02:00
|
|
|
include sixlowpan/Make.defs
|
2014-06-29 02:07:02 +02:00
|
|
|
include devif/Make.defs
|
2015-08-24 18:08:26 +02:00
|
|
|
include loopback/Make.defs
|
2014-06-26 21:02:08 +02:00
|
|
|
include route/Make.defs
|
2015-11-27 20:53:33 +01:00
|
|
|
include procfs/Make.defs
|
2017-03-31 16:58:14 +02:00
|
|
|
include usrsock/Make.defs
|
2014-06-27 23:42:21 +02:00
|
|
|
include utils/Make.defs
|
2007-08-27 01:12:17 +02:00
|
|
|
endif
|
|
|
|
|
2016-05-10 23:44:06 +02:00
|
|
|
ASRCS = $(SOCK_ASRCS) $(NETDEV_ASRCS) $(NET_ASRCS)
|
|
|
|
AOBJS = $(ASRCS:.S=$(OBJEXT))
|
2007-08-27 01:12:17 +02:00
|
|
|
|
2016-05-10 23:44:06 +02:00
|
|
|
CSRCS = $(SOCK_CSRCS) $(NETDEV_CSRCS) $(NET_CSRCS)
|
|
|
|
COBJS = $(CSRCS:.c=$(OBJEXT))
|
2007-08-27 01:12:17 +02:00
|
|
|
|
2016-05-10 23:44:06 +02:00
|
|
|
SRCS = $(ASRCS) $(CSRCS)
|
|
|
|
OBJS = $(AOBJS) $(COBJS)
|
2007-08-27 01:12:17 +02:00
|
|
|
|
2016-05-10 23:44:06 +02:00
|
|
|
BIN = libnet$(LIBEXT)
|
2007-08-27 01:12:17 +02:00
|
|
|
|
2016-05-10 23:44:06 +02:00
|
|
|
all: $(BIN)
|
|
|
|
.PHONY: depend clean distclean
|
2007-08-27 01:12:17 +02:00
|
|
|
|
|
|
|
$(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
|