2018-08-04 03:22:36 +08:00
|
|
|
############################################################################
|
|
|
|
# net/netlink/Make.defs
|
|
|
|
#
|
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
|
2018-08-04 03:22:36 +08:00
|
|
|
#
|
2021-02-19 19:45:37 +08:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2018-08-04 03:22:36 +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.
|
2018-08-04 03:22:36 +08:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
2020-04-08 01:44:23 +08:00
|
|
|
# Logic specific to NETLINK
|
2018-08-04 03:22:36 +08:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_NET_NETLINK),y)
|
|
|
|
|
2019-11-04 03:59:42 +08:00
|
|
|
SOCK_CSRCS += netlink_sockif.c
|
2019-11-29 04:20:40 +08:00
|
|
|
NET_CSRCS += netlink_conn.c netlink_notifier.c
|
2019-11-04 03:59:42 +08:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_NETLINK_ROUTE),y)
|
2023-01-30 16:50:11 +08:00
|
|
|
NET_CSRCS += netlink_route.c netlink_attr.c
|
2019-11-04 03:59:42 +08:00
|
|
|
endif
|
2018-08-04 03:22:36 +08:00
|
|
|
|
|
|
|
# Include netlink build support
|
|
|
|
|
|
|
|
DEPPATH += --dep-path netlink
|
|
|
|
VPATH += :netlink
|
|
|
|
endif
|