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
|
|
|
#
|
2021-02-19 19:45:37 +08: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-27 07:12:17 +08:00
|
|
|
#
|
2021-02-19 19:45:37 +08:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2007-08-27 07:12:17 +08:00
|
|
|
#
|
2021-02-19 19:45:37 +08: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-27 07:12:17 +08:00
|
|
|
#
|
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
|
2023-01-09 20:47:11 +08:00
|
|
|
include ipfrag/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
|
2020-11-05 20:30:49 +08:00
|
|
|
include rpmsg/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
|
2024-02-08 16:00:00 +08:00
|
|
|
include ipfilter/Make.defs
|
2017-07-08 08:33:06 +08:00
|
|
|
include ipforward/Make.defs
|
2022-10-17 15:13:34 +08:00
|
|
|
include nat/Make.defs
|
2022-12-13 16:08:24 +08:00
|
|
|
include netfilter/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
|
|
|
|
|
2022-11-01 21:47:53 +08:00
|
|
|
CFLAGS += ${INCDIR_PREFIX}$(TOPDIR)$(DELIM)net
|
2020-05-19 17:43:29 +08:00
|
|
|
|
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))
|
2020-11-28 11:43:30 +08:00
|
|
|
|
2020-11-19 00:44:58 +08:00
|
|
|
makedepfile: $(CSRCS:.c=.ddc) $(ASRCS:.S=.dds)
|
|
|
|
$(call CATFILE, Make.dep, $^)
|
|
|
|
$(call DELFILE, $^)
|
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)
|
2020-11-19 00:44:58 +08:00
|
|
|
$(Q) $(MAKE) makedepfile
|
2020-03-23 10:44:03 +08:00
|
|
|
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
|