/ tests / commonlib / bsd / Makefile.mk
Makefile.mk
 1  # SPDX-License-Identifier: GPL-2.0-only
 2  
 3  tests-y += helpers-test
 4  tests-y += gcd-test
 5  tests-y += ipchksum-test
 6  tests-y += string-test
 7  
 8  helpers-test-srcs += tests/commonlib/bsd/helpers-test.c
 9  
10  gcd-test-srcs += tests/commonlib/bsd/gcd-test.c
11  gcd-test-srcs += src/commonlib/bsd/gcd.c
12  
13  ipchksum-test-srcs += tests/commonlib/bsd/ipchksum-test.c
14  ipchksum-test-srcs += src/commonlib/bsd/ipchksum.c
15  
16  string-test-srcs += tests/commonlib/bsd/string-test.c
17  string-test-srcs += src/commonlib/bsd/string.c