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
|
|
|
#
|
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-27 01:12:17 +02:00
|
|
|
#
|
2021-02-19 12:45:37 +01:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2007-08-27 01:12:17 +02: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-27 01:12:17 +02:00
|
|
|
#
|
2007-09-03 22:34:44 +02:00
|
|
|
############################################################################
|
2007-08-27 01:12:17 +02:00
|
|
|
|
2020-05-18 21:42:11 +02:00
|
|
|
include $(TOPDIR)/Make.defs
|
2007-08-27 01:12:17 +02:00
|
|
|
|
2007-09-01 20:06:15 +02:00
|
|
|
ifeq ($(CONFIG_NET),y)
|
2011-06-02 17:05:48 +02:00
|
|
|
|
|
|
|
# Basic networking support
|
|
|
|
|
2020-05-21 12:23:42 +02:00
|
|
|
NET_CSRCS = net_initialize.c
|
2014-06-29 00:41:55 +02:00
|
|
|
|
|
|
|
include socket/Make.defs
|
2017-08-06 22:48:19 +02:00
|
|
|
include inet/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
|
2020-11-05 13:30:49 +01:00
|
|
|
include rpmsg/Make.defs
|
2018-10-31 21:10:19 +01:00
|
|
|
include mld/Make.defs
|
2020-06-15 10:23:25 +02:00
|
|
|
include can/Make.defs
|
2018-08-03 21:22:36 +02:00
|
|
|
include netlink/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
|
2018-03-31 22:55:03 +02:00
|
|
|
include bluetooth/Make.defs
|
2017-08-19 16:48:52 +02:00
|
|
|
include ieee802154/Make.defs
|
2014-06-29 02:07:02 +02:00
|
|
|
include devif/Make.defs
|
2017-07-08 02:33:06 +02:00
|
|
|
include ipforward/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
|
|
|
|
|
2020-05-19 11:43:29 +02:00
|
|
|
CFLAGS += ${shell $(INCDIR) "$(CC)" $(TOPDIR)$(DELIM)net}
|
|
|
|
|
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))
|
2020-11-28 04:43:30 +01:00
|
|
|
|
2020-11-18 17:44:58 +01:00
|
|
|
makedepfile: $(CSRCS:.c=.ddc) $(ASRCS:.S=.dds)
|
|
|
|
$(call CATFILE, Make.dep, $^)
|
|
|
|
$(call DELFILE, $^)
|
2007-08-27 01:12:17 +02:00
|
|
|
|
2020-07-22 09:54:29 +02:00
|
|
|
.depend: Makefile $(SRCS) $(TOPDIR)$(DELIM).config
|
2020-03-23 03:44:03 +01:00
|
|
|
ifeq ($(CONFIG_NET),y)
|
2020-11-18 17:44:58 +01:00
|
|
|
$(Q) $(MAKE) makedepfile
|
2020-03-23 03:44:03 +01:00
|
|
|
endif
|
|
|
|
$(Q) touch $@
|
2007-08-27 01:12:17 +02:00
|
|
|
|
2020-03-23 03:44:03 +01:00
|
|
|
depend: .depend
|
2007-08-27 01:12:17 +02:00
|
|
|
|
|
|
|
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)
|
2020-03-23 03:44:03 +01:00
|
|
|
$(call DELFILE, .depend)
|
2007-08-27 01:12:17 +02:00
|
|
|
|
|
|
|
-include Make.dep
|