You've already forked linux-rockchip
mirror of
https://github.com/armbian/linux-rockchip.git
synced 2026-01-06 11:08:10 -08:00
Add a skeleton structure for adding TLS statistics. Signed-off-by: Jakub Kicinski <jakub.kicinski@netronome.com> Signed-off-by: David S. Miller <davem@davemloft.net>
14 lines
282 B
Makefile
14 lines
282 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Makefile for the TLS subsystem.
|
|
#
|
|
|
|
CFLAGS_trace.o := -I$(src)
|
|
|
|
obj-$(CONFIG_TLS) += tls.o
|
|
|
|
tls-y := tls_main.o tls_sw.o tls_proc.o trace.o
|
|
|
|
tls-$(CONFIG_TLS_TOE) += tls_toe.o
|
|
tls-$(CONFIG_TLS_DEVICE) += tls_device.o tls_device_fallback.o
|