mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-18 19:43:43 -04:00
We get a significant number of conflicts between net and net-next because of selftests Makefile changes. People tend to append new test cases at the end of the Makefile when there's no clear sort order. Sort all networking selftests Makefiles, use the following format: VAR_NAME := \ entry1 \ entry2 \ entry3 \ # end of VAR_NAME Some Makefiles are already pretty close to this. Acked-by: Antonio Quartulli <antonio@openvpn.net> Acked-by: Matthieu Baerts (NGI0) <matttbe@kernel.org> Acked-by: Allison Henderson <allison.henderson@oracle.com> Reviewed-by: Petr Machata <petrm@nvidia.com> Link: https://patch.msgid.link/20251003210127.1021918-1-kuba@kernel.org Signed-off-by: Jakub Kicinski <kuba@kernel.org>
35 lines
770 B
Makefile
35 lines
770 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2020-2025 OpenVPN, Inc.
|
|
#
|
|
CFLAGS = -pedantic -Wextra -Wall -Wl,--no-as-needed -g -O0 -ggdb $(KHDR_INCLUDES)
|
|
VAR_CFLAGS = $(shell pkg-config --cflags libnl-3.0 libnl-genl-3.0 2>/dev/null)
|
|
ifeq ($(VAR_CFLAGS),)
|
|
VAR_CFLAGS = -I/usr/include/libnl3
|
|
endif
|
|
CFLAGS += $(VAR_CFLAGS)
|
|
|
|
|
|
LDLIBS = -lmbedtls -lmbedcrypto
|
|
VAR_LDLIBS = $(shell pkg-config --libs libnl-3.0 libnl-genl-3.0 2>/dev/null)
|
|
ifeq ($(VAR_LDLIBS),)
|
|
VAR_LDLIBS = -lnl-genl-3 -lnl-3
|
|
endif
|
|
LDLIBS += $(VAR_LDLIBS)
|
|
|
|
|
|
TEST_FILES = common.sh
|
|
|
|
TEST_PROGS := \
|
|
test-chachapoly.sh \
|
|
test-close-socket-tcp.sh \
|
|
test-close-socket.sh \
|
|
test-float.sh \
|
|
test-large-mtu.sh \
|
|
test-tcp.sh \
|
|
test.sh \
|
|
# end of TEST_PROGS
|
|
|
|
TEST_GEN_FILES := ovpn-cli
|
|
|
|
include ../../lib.mk
|