1# SPDX-License-Identifier: GPL-2.0 2 3CFLAGS += -O3 -Wl,-no-as-needed -Wall -I $(top_srcdir) 4LDLIBS += -lpthread -lm -luring 5 6TEST_PROGS := test_generic_01.sh 7 8TEST_PROGS += test_null_01.sh 9TEST_PROGS += test_null_02.sh 10TEST_PROGS += test_loop_01.sh 11TEST_PROGS += test_loop_02.sh 12TEST_PROGS += test_loop_03.sh 13TEST_PROGS += test_loop_04.sh 14TEST_PROGS += test_stripe_01.sh 15TEST_PROGS += test_stripe_02.sh 16 17TEST_PROGS += test_stress_01.sh 18TEST_PROGS += test_stress_02.sh 19 20TEST_GEN_PROGS_EXTENDED = kublk 21 22include ../lib.mk 23 24$(TEST_GEN_PROGS_EXTENDED): kublk.c null.c file_backed.c common.c stripe.c 25 26check: 27 shellcheck -x -f gcc *.sh 28