2015-01-24 21:03:32 +01:00
|
|
|
############################################################################
|
|
|
|
# net/local/Make.defs
|
|
|
|
#
|
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
|
2015-01-24 21:03:32 +01:00
|
|
|
#
|
2021-02-19 12:45:37 +01:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2015-01-24 21:03:32 +01: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.
|
2015-01-24 21:03:32 +01:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
2015-01-30 14:09:25 +01:00
|
|
|
# Unix domain socket source files
|
2015-01-24 21:03:32 +01:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_NET_LOCAL),y)
|
|
|
|
|
2015-01-31 14:58:51 +01:00
|
|
|
NET_CSRCS += local_conn.c local_release.c local_bind.c local_fifo.c
|
|
|
|
NET_CSRCS += local_recvfrom.c local_sendpacket.c local_recvutils.c
|
2019-05-22 02:57:54 +02:00
|
|
|
NET_CSRCS += local_sockif.c local_netpoll.c
|
2015-01-31 14:58:51 +01:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_NET_LOCAL_STREAM),y)
|
|
|
|
NET_CSRCS += local_connect.c local_listen.c local_accept.c local_send.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_NET_LOCAL_DGRAM),y)
|
|
|
|
NET_CSRCS += local_sendto.c
|
|
|
|
endif
|
2015-01-24 21:03:32 +01:00
|
|
|
|
2015-01-30 14:09:25 +01:00
|
|
|
# Include Unix domain socket build support
|
2015-01-24 21:03:32 +01:00
|
|
|
|
|
|
|
DEPPATH += --dep-path local
|
|
|
|
VPATH += :local
|
|
|
|
|
|
|
|
endif # CONFIG_NET_LOCAL
|