2007-09-03 20:34:44 +00:00
|
|
|
############################################################################
|
2007-12-11 14:23:16 +00:00
|
|
|
# net/Makefile
|
2007-08-26 23:12:17 +00:00
|
|
|
#
|
2021-02-19 12:45:37 +01:00
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
|
|
# this work for additional information regarding copyright ownership. The
|
|
|
|
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
# "License"); you may not use this file except in compliance with the
|
|
|
|
# License. You may obtain a copy of the License at
|
2007-08-26 23:12:17 +00:00
|
|
|
#
|
2021-02-19 12:45:37 +01:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2007-08-26 23:12:17 +00:00
|
|
|
#
|
2021-02-19 12:45:37 +01:00
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
2007-08-26 23:12:17 +00:00
|
|
|
#
|
2007-09-03 20:34:44 +00:00
|
|
|
############################################################################
|
2007-08-26 23:12:17 +00:00
|
|
|
|
2020-05-19 03:42:11 +08:00
|
|
|
include $(TOPDIR)/Make.defs
|
2007-08-26 23:12:17 +00:00
|
|
|
|
2007-09-01 18:06:15 +00:00
|
|
|
ifeq ($(CONFIG_NET),y)
|
2011-06-02 15:05:48 +00:00
|
|
|
|
|
|
|
# Basic networking support
|
|
|
|
|
2020-05-21 18:23:42 +08:00
|
|
|
NET_CSRCS = net_initialize.c
|
2014-06-28 16:41:55 -06:00
|
|
|
|
|
|
|
include socket/Make.defs
|
2017-08-06 14:48:19 -06:00
|
|
|
include inet/Make.defs
|
2014-06-27 09:56:45 -06:00
|
|
|
include netdev/Make.defs
|
2014-05-30 11:14:06 -06:00
|
|
|
include arp/Make.defs
|
2014-05-30 13:32:10 -06:00
|
|
|
include icmp/Make.defs
|
2015-01-14 14:26:50 -06:00
|
|
|
include icmpv6/Make.defs
|
2015-01-19 10:36:22 -06:00
|
|
|
include neighbor/Make.defs
|
2014-05-30 13:05:19 -06:00
|
|
|
include igmp/Make.defs
|
2015-01-24 14:03:32 -06:00
|
|
|
include pkt/Make.defs
|
|
|
|
include local/Make.defs
|
2020-11-05 20:30:49 +08:00
|
|
|
include rpmsg/Make.defs
|
2018-10-31 14:10:19 -06:00
|
|
|
include mld/Make.defs
|
2020-06-15 10:23:25 +02:00
|
|
|
include can/Make.defs
|
2018-08-03 13:22:36 -06:00
|
|
|
include netlink/Make.defs
|
2014-06-18 10:18:53 -06:00
|
|
|
include tcp/Make.defs
|
2014-06-18 10:50:09 -06:00
|
|
|
include udp/Make.defs
|
2017-03-27 14:53:52 -06:00
|
|
|
include sixlowpan/Make.defs
|
2018-03-31 14:55:03 -06:00
|
|
|
include bluetooth/Make.defs
|
2017-08-19 08:48:52 -06:00
|
|
|
include ieee802154/Make.defs
|
2014-06-28 18:07:02 -06:00
|
|
|
include devif/Make.defs
|
2017-07-07 18:33:06 -06:00
|
|
|
include ipforward/Make.defs
|
2014-06-26 13:02:08 -06:00
|
|
|
include route/Make.defs
|
2015-11-27 13:53:33 -06:00
|
|
|
include procfs/Make.defs
|
2017-03-31 08:58:14 -06:00
|
|
|
include usrsock/Make.defs
|
2014-06-27 15:42:21 -06:00
|
|
|
include utils/Make.defs
|
2007-08-26 23:12:17 +00:00
|
|
|
endif
|
|
|
|
|
2020-05-19 17:43:29 +08:00
|
|
|
CFLAGS += ${shell $(INCDIR) "$(CC)" $(TOPDIR)$(DELIM)net}
|
|
|
|
|
2016-05-10 15:44:06 -06:00
|
|
|
ASRCS = $(SOCK_ASRCS) $(NETDEV_ASRCS) $(NET_ASRCS)
|
|
|
|
AOBJS = $(ASRCS:.S=$(OBJEXT))
|
2007-08-26 23:12:17 +00:00
|
|
|
|
2016-05-10 15:44:06 -06:00
|
|
|
CSRCS = $(SOCK_CSRCS) $(NETDEV_CSRCS) $(NET_CSRCS)
|
|
|
|
COBJS = $(CSRCS:.c=$(OBJEXT))
|
2007-08-26 23:12:17 +00:00
|
|
|
|
2016-05-10 15:44:06 -06:00
|
|
|
SRCS = $(ASRCS) $(CSRCS)
|
|
|
|
OBJS = $(AOBJS) $(COBJS)
|
2007-08-26 23:12:17 +00:00
|
|
|
|
2016-05-10 15:44:06 -06:00
|
|
|
BIN = libnet$(LIBEXT)
|
2007-08-26 23:12:17 +00:00
|
|
|
|
2016-05-10 15:44:06 -06:00
|
|
|
all: $(BIN)
|
|
|
|
.PHONY: depend clean distclean
|
2007-08-26 23:12:17 +00:00
|
|
|
|
|
|
|
$(AOBJS): %$(OBJEXT): %.S
|
2008-01-08 17:06:21 +00:00
|
|
|
$(call ASSEMBLE, $<, $@)
|
2007-08-26 23:12:17 +00:00
|
|
|
|
|
|
|
$(COBJS): %$(OBJEXT): %.c
|
2008-01-08 17:06:21 +00:00
|
|
|
$(call COMPILE, $<, $@)
|
2007-08-26 23:12:17 +00:00
|
|
|
|
|
|
|
$(BIN): $(OBJS)
|
2012-11-15 17:43:29 +00:00
|
|
|
$(call ARCHIVE, $@, $(OBJS))
|
2020-11-28 11:43:30 +08:00
|
|
|
|
2020-11-18 13:44:58 -03:00
|
|
|
makedepfile: $(CSRCS:.c=.ddc) $(ASRCS:.S=.dds)
|
|
|
|
$(call CATFILE, Make.dep, $^)
|
|
|
|
$(call DELFILE, $^)
|
2007-08-26 23:12:17 +00:00
|
|
|
|
2020-07-22 16:54:29 +09:00
|
|
|
.depend: Makefile $(SRCS) $(TOPDIR)$(DELIM).config
|
2020-03-23 11:44:03 +09:00
|
|
|
ifeq ($(CONFIG_NET),y)
|
2020-11-18 13:44:58 -03:00
|
|
|
$(Q) $(MAKE) makedepfile
|
2020-03-23 11:44:03 +09:00
|
|
|
endif
|
|
|
|
$(Q) touch $@
|
2007-08-26 23:12:17 +00:00
|
|
|
|
2020-03-23 11:44:03 +09:00
|
|
|
depend: .depend
|
2007-08-26 23:12:17 +00:00
|
|
|
|
|
|
|
clean:
|
2012-11-20 15:47:41 +00:00
|
|
|
$(call DELFILE, $(BIN))
|
2008-01-10 18:23:08 +00:00
|
|
|
$(call CLEAN)
|
2007-08-26 23:12:17 +00:00
|
|
|
|
|
|
|
distclean: clean
|
2012-11-20 15:47:41 +00:00
|
|
|
$(call DELFILE, Make.dep)
|
2020-03-23 11:44:03 +09:00
|
|
|
$(call DELFILE, .depend)
|
2007-08-26 23:12:17 +00:00
|
|
|
|
|
|
|
-include Make.dep
|