brintos

brintos / linux-shallow public Read only

0
0
Text · 443 B · 3ef1130 Raw
12 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2obj-y += div64.o gcd.o lcm.o int_log.o int_pow.o int_sqrt.o reciprocal_div.o3 4obj-$(CONFIG_CORDIC)		+= cordic.o5obj-$(CONFIG_PRIME_NUMBERS)	+= prime_numbers.o6obj-$(CONFIG_RATIONAL)		+= rational.o7 8obj-$(CONFIG_INT_POW_TEST)  += tests/int_pow_kunit.o9obj-$(CONFIG_TEST_DIV64)	+= test_div64.o10obj-$(CONFIG_TEST_MULDIV64)	+= test_mul_u64_u64_div_u64.o11obj-$(CONFIG_RATIONAL_KUNIT_TEST) += rational-test.o12