2012-11-10 16:06:01 +00:00
|
|
|
############################################################################
|
2018-05-29 13:21:26 -06:00
|
|
|
# libs/libc/net/Make.defs
|
2012-11-10 16:06:01 +00:00
|
|
|
#
|
2021-03-02 15:54:21 +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
|
2012-11-10 16:06:01 +00:00
|
|
|
#
|
2021-03-02 15:54:21 +01:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2012-11-10 16:06:01 +00:00
|
|
|
#
|
2021-03-02 15:54:21 +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.
|
2012-11-10 16:06:01 +00:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
|
|
|
# Add the networking C files to the build
|
|
|
|
|
2020-12-25 21:52:37 +08:00
|
|
|
CSRCS += lib_addrconfig.c lib_base64.c lib_htons.c lib_htonl.c
|
2018-06-08 07:06:27 -06:00
|
|
|
CSRCS += lib_inetaddr.c lib_inetaton.c lib_inetntoa.c
|
|
|
|
CSRCS += lib_inetntop.c lib_inetpton.c
|
2020-12-09 10:57:56 +08:00
|
|
|
CSRCS += lib_etherntoa.c lib_etheraton.c
|
2015-09-09 12:14:04 -06:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_NET),y)
|
2021-06-08 22:15:42 +08:00
|
|
|
CSRCS += lib_shutdown.c
|
2015-09-09 12:14:04 -06:00
|
|
|
endif
|
2012-11-10 16:06:01 +00:00
|
|
|
|
2020-03-29 21:43:44 +08:00
|
|
|
ifeq ($(CONFIG_NET_LOOPBACK),y)
|
|
|
|
CSRCS += lib_loopback.c
|
|
|
|
endif
|
|
|
|
|
2021-06-22 11:19:06 +08:00
|
|
|
ifeq ($(CONFIG_NETDEV_IFINDEX),y)
|
|
|
|
CSRCS += lib_nameindex.c lib_freenameindex.c
|
|
|
|
endif
|
|
|
|
|
2013-10-02 10:51:48 -06:00
|
|
|
# Routing table support
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_NET_ROUTE),y)
|
|
|
|
CSRCS += lib_addroute.c lib_delroute.c
|
|
|
|
endif
|
|
|
|
|
2012-11-10 16:06:01 +00:00
|
|
|
# Add the net directory to the build
|
|
|
|
|
|
|
|
DEPPATH += --dep-path net
|
|
|
|
VPATH += :net
|