]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - lib/kunit/Makefile
Merge tag 'pci-v5.11-fixes-1' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaa...
[mirror_ubuntu-hirsute-kernel.git] / lib / kunit / Makefile
CommitLineData
9fe124bf
AM
1obj-$(CONFIG_KUNIT) += kunit.o
2
3kunit-objs += test.o \
6b229e59 4 string-stream.o \
5f3e0620 5 assert.o \
aac35468
AM
6 try-catch.o \
7 executor.o
d8e2a76b 8
e2219db2
AM
9ifeq ($(CONFIG_KUNIT_DEBUGFS),y)
10kunit-objs += debugfs.o
11endif
12
c475c77d 13obj-$(CONFIG_KUNIT_TEST) += kunit-test.o
d8e2a76b 14
c475c77d
AM
15# string-stream-test compiles built-in only.
16ifeq ($(CONFIG_KUNIT_TEST),y)
17obj-$(CONFIG_KUNIT_TEST) += string-stream-test.o
18endif
19
20obj-$(CONFIG_KUNIT_EXAMPLE_TEST) += kunit-example-test.o