perf pmu: Add bison debug build flag
[linux-2.6-microblaze.git] / lib / kunit / Makefile
1 obj-$(CONFIG_KUNIT) +=                  kunit.o
2
3 kunit-objs +=                           test.o \
4                                         string-stream.o \
5                                         assert.o \
6                                         try-catch.o
7
8 ifeq ($(CONFIG_KUNIT_DEBUGFS),y)
9 kunit-objs +=                           debugfs.o
10 endif
11
12 obj-$(CONFIG_KUNIT_TEST) +=             kunit-test.o
13
14 # string-stream-test compiles built-in only.
15 ifeq ($(CONFIG_KUNIT_TEST),y)
16 obj-$(CONFIG_KUNIT_TEST) +=             string-stream-test.o
17 endif
18
19 obj-$(CONFIG_KUNIT_EXAMPLE_TEST) +=     kunit-example-test.o