2017-03-31 16:58:14 +02:00
|
|
|
############################################################################
|
|
|
|
# net/usrsock/Make.defs
|
|
|
|
#
|
2021-11-15 07:53:26 +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
|
2017-03-31 16:58:14 +02:00
|
|
|
#
|
2021-11-15 07:53:26 +01:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2017-03-31 16:58:14 +02:00
|
|
|
#
|
2021-11-15 07:53:26 +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.
|
2017-03-31 16:58:14 +02:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
|
|
|
# User Socket source files
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_NET_USRSOCK),y)
|
|
|
|
|
|
|
|
NET_CSRCS += usrsock_close.c usrsock_conn.c usrsock_bind.c usrsock_connect.c
|
2022-09-09 14:58:51 +02:00
|
|
|
NET_CSRCS += usrsock_getpeername.c usrsock_devif.c
|
2017-03-31 16:58:14 +02:00
|
|
|
NET_CSRCS += usrsock_event.c usrsock_getsockname.c usrsock_getsockopt.c
|
2020-12-01 07:55:16 +01:00
|
|
|
NET_CSRCS += usrsock_poll.c usrsock_recvmsg.c usrsock_sendmsg.c
|
2017-07-31 17:33:59 +02:00
|
|
|
NET_CSRCS += usrsock_setsockopt.c usrsock_socket.c usrsock_sockif.c
|
2018-08-26 23:15:48 +02:00
|
|
|
NET_CSRCS += usrsock_accept.c usrsock_listen.c usrsock_ioctl.c
|
2017-03-31 16:58:14 +02:00
|
|
|
|
|
|
|
# Include User Socket build support
|
|
|
|
|
|
|
|
DEPPATH += --dep-path usrsock
|
|
|
|
VPATH += :usrsock
|
|
|
|
|
|
|
|
endif # CONFIG_NET_USRSOCK
|