2007-09-04 04:34:44 +08:00
|
|
|
############################################################################
|
2007-12-11 22:23:16 +08:00
|
|
|
# net/Makefile
|
2007-08-27 07:12:17 +08:00
|
|
|
#
|
2018-04-01 04:55:03 +08:00
|
|
|
# Copyright (C) 2007, 2008, 2011-2018 Gregory Nutt. All rights reserved.
|
2012-03-14 04:51:48 +08:00
|
|
|
# Author: Gregory Nutt <gnutt@nuttx.org>
|
2007-08-27 07:12:17 +08: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 07:38:15 +08:00
|
|
|
# 3. Neither the name NuttX nor the names of its contributors may be
|
2007-08-27 07:12:17 +08: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-04 04:34:44 +08:00
|
|
|
############################################################################
|
2007-08-27 07:12:17 +08:00
|
|
|
|
2020-05-19 03:42:11 +08:00
|
|
|
include $(TOPDIR)/Make.defs
|
2007-08-27 07:12:17 +08:00
|
|
|
|
2007-09-02 02:06:15 +08:00
|
|
|
ifeq ($(CONFIG_NET),y)
|
2011-06-02 23:05:48 +08:00
|
|
|
|
|
|
|
# Basic networking support
|
|
|
|
|
2020-05-21 18:23:42 +08:00
|
|
|
NET_CSRCS = net_initialize.c
|
2014-06-29 06:41:55 +08:00
|
|
|
|
|
|
|
include socket/Make.defs
|
2017-08-07 04:48:19 +08:00
|
|
|
include inet/Make.defs
|
2014-06-27 23:56:45 +08:00
|
|
|
include netdev/Make.defs
|
2014-05-31 01:14:06 +08:00
|
|
|
include arp/Make.defs
|
2014-05-31 03:32:10 +08:00
|
|
|
include icmp/Make.defs
|
2015-01-15 04:26:50 +08:00
|
|
|
include icmpv6/Make.defs
|
2015-01-20 00:36:22 +08:00
|
|
|
include neighbor/Make.defs
|
2014-05-31 03:05:19 +08:00
|
|
|
include igmp/Make.defs
|
2015-01-25 04:03:32 +08:00
|
|
|
include pkt/Make.defs
|
|
|
|
include local/Make.defs
|
2018-11-01 04:10:19 +08:00
|
|
|
include mld/Make.defs
|
2020-06-15 16:23:25 +08:00
|
|
|
include can/Make.defs
|
2018-08-04 03:22:36 +08:00
|
|
|
include netlink/Make.defs
|
2014-06-19 00:18:53 +08:00
|
|
|
include tcp/Make.defs
|
2014-06-19 00:50:09 +08:00
|
|
|
include udp/Make.defs
|
2017-03-28 04:53:52 +08:00
|
|
|
include sixlowpan/Make.defs
|
2018-04-01 04:55:03 +08:00
|
|
|
include bluetooth/Make.defs
|
2017-08-19 22:48:52 +08:00
|
|
|
include ieee802154/Make.defs
|
2014-06-29 08:07:02 +08:00
|
|
|
include devif/Make.defs
|
2017-07-08 08:33:06 +08:00
|
|
|
include ipforward/Make.defs
|
2014-06-27 03:02:08 +08:00
|
|
|
include route/Make.defs
|
2015-11-28 03:53:33 +08:00
|
|
|
include procfs/Make.defs
|
2017-03-31 22:58:14 +08:00
|
|
|
include usrsock/Make.defs
|
2014-06-28 05:42:21 +08:00
|
|
|
include utils/Make.defs
|
2007-08-27 07:12:17 +08:00
|
|
|
endif
|
|
|
|
|
2020-05-19 17:43:29 +08:00
|
|
|
CFLAGS += ${shell $(INCDIR) "$(CC)" $(TOPDIR)$(DELIM)net}
|
|
|
|
|
2016-05-11 05:44:06 +08:00
|
|
|
ASRCS = $(SOCK_ASRCS) $(NETDEV_ASRCS) $(NET_ASRCS)
|
|
|
|
AOBJS = $(ASRCS:.S=$(OBJEXT))
|
2007-08-27 07:12:17 +08:00
|
|
|
|
2016-05-11 05:44:06 +08:00
|
|
|
CSRCS = $(SOCK_CSRCS) $(NETDEV_CSRCS) $(NET_CSRCS)
|
|
|
|
COBJS = $(CSRCS:.c=$(OBJEXT))
|
2007-08-27 07:12:17 +08:00
|
|
|
|
2016-05-11 05:44:06 +08:00
|
|
|
SRCS = $(ASRCS) $(CSRCS)
|
|
|
|
OBJS = $(AOBJS) $(COBJS)
|
2007-08-27 07:12:17 +08:00
|
|
|
|
2016-05-11 05:44:06 +08:00
|
|
|
BIN = libnet$(LIBEXT)
|
2007-08-27 07:12:17 +08:00
|
|
|
|
2016-05-11 05:44:06 +08:00
|
|
|
all: $(BIN)
|
|
|
|
.PHONY: depend clean distclean
|
2007-08-27 07:12:17 +08:00
|
|
|
|
|
|
|
$(AOBJS): %$(OBJEXT): %.S
|
2008-01-09 01:06:21 +08:00
|
|
|
$(call ASSEMBLE, $<, $@)
|
2007-08-27 07:12:17 +08:00
|
|
|
|
|
|
|
$(COBJS): %$(OBJEXT): %.c
|
2008-01-09 01:06:21 +08:00
|
|
|
$(call COMPILE, $<, $@)
|
2007-08-27 07:12:17 +08:00
|
|
|
|
|
|
|
$(BIN): $(OBJS)
|
2012-11-16 01:43:29 +08:00
|
|
|
$(call ARCHIVE, $@, $(OBJS))
|
2007-08-27 07:12:17 +08:00
|
|
|
|
2020-07-22 15:54:29 +08:00
|
|
|
.depend: Makefile $(SRCS) $(TOPDIR)$(DELIM).config
|
2020-03-23 10:44:03 +08:00
|
|
|
ifeq ($(CONFIG_NET),y)
|
|
|
|
$(Q) $(MKDEP) $(DEPPATH) "$(CC)" -- $(CFLAGS) -- $(SRCS) >Make.dep
|
|
|
|
endif
|
|
|
|
$(Q) touch $@
|
2007-08-27 07:12:17 +08:00
|
|
|
|
2020-03-23 10:44:03 +08:00
|
|
|
depend: .depend
|
2007-08-27 07:12:17 +08:00
|
|
|
|
|
|
|
clean:
|
2012-11-20 23:47:41 +08:00
|
|
|
$(call DELFILE, $(BIN))
|
2008-01-11 02:23:08 +08:00
|
|
|
$(call CLEAN)
|
2007-08-27 07:12:17 +08:00
|
|
|
|
|
|
|
distclean: clean
|
2012-11-20 23:47:41 +08:00
|
|
|
$(call DELFILE, Make.dep)
|
2020-03-23 10:44:03 +08:00
|
|
|
$(call DELFILE, .depend)
|
2007-08-27 07:12:17 +08:00
|
|
|
|
|
|
|
-include Make.dep
|