Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
61 lines
1.5 KiB
Makefile
61 lines
1.5 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
CFLAGS += -O3 -Wl,-no-as-needed -Wall -I $(top_srcdir)/usr/include
|
|
ifneq ($(WERROR),0)
|
|
CFLAGS += -Werror
|
|
endif
|
|
|
|
LDLIBS += -lpthread -lm -luring
|
|
|
|
TEST_PROGS := test_generic_01.sh
|
|
TEST_PROGS += test_generic_02.sh
|
|
TEST_PROGS += test_generic_03.sh
|
|
TEST_PROGS += test_generic_04.sh
|
|
TEST_PROGS += test_generic_05.sh
|
|
TEST_PROGS += test_generic_06.sh
|
|
TEST_PROGS += test_generic_07.sh
|
|
|
|
TEST_PROGS += test_generic_08.sh
|
|
TEST_PROGS += test_generic_09.sh
|
|
TEST_PROGS += test_generic_10.sh
|
|
TEST_PROGS += test_generic_11.sh
|
|
TEST_PROGS += test_generic_12.sh
|
|
TEST_PROGS += test_generic_13.sh
|
|
TEST_PROGS += test_generic_14.sh
|
|
TEST_PROGS += test_generic_15.sh
|
|
|
|
TEST_PROGS += test_null_01.sh
|
|
TEST_PROGS += test_null_02.sh
|
|
TEST_PROGS += test_null_03.sh
|
|
TEST_PROGS += test_loop_01.sh
|
|
TEST_PROGS += test_loop_02.sh
|
|
TEST_PROGS += test_loop_03.sh
|
|
TEST_PROGS += test_loop_04.sh
|
|
TEST_PROGS += test_loop_05.sh
|
|
TEST_PROGS += test_loop_06.sh
|
|
TEST_PROGS += test_loop_07.sh
|
|
TEST_PROGS += test_stripe_01.sh
|
|
TEST_PROGS += test_stripe_02.sh
|
|
TEST_PROGS += test_stripe_03.sh
|
|
TEST_PROGS += test_stripe_04.sh
|
|
TEST_PROGS += test_stripe_05.sh
|
|
TEST_PROGS += test_stripe_06.sh
|
|
|
|
TEST_PROGS += test_stress_01.sh
|
|
TEST_PROGS += test_stress_02.sh
|
|
TEST_PROGS += test_stress_03.sh
|
|
TEST_PROGS += test_stress_04.sh
|
|
TEST_PROGS += test_stress_05.sh
|
|
TEST_PROGS += test_stress_06.sh
|
|
TEST_PROGS += test_stress_07.sh
|
|
|
|
TEST_GEN_PROGS_EXTENDED = kublk
|
|
|
|
LOCAL_HDRS += $(wildcard *.h)
|
|
include ../lib.mk
|
|
|
|
$(TEST_GEN_PROGS_EXTENDED): $(wildcard *.c)
|
|
|
|
check:
|
|
shellcheck -x -f gcc *.sh
|