Makefile (61e0e79ee3c609eb34edf2fe023708cba6a79b1f) | Makefile (606576ce816603d9fe1fb453a88bc6eea16ca709) |
---|---|
1# 2# Makefile for some libs needed in the kernel. 3# 4 | 1# 2# Makefile for some libs needed in the kernel. 3# 4 |
5ifdef CONFIG_FTRACE | 5ifdef CONFIG_FUNCTION_TRACER |
6ORIG_CFLAGS := $(KBUILD_CFLAGS) 7KBUILD_CFLAGS = $(subst -pg,,$(ORIG_CFLAGS)) 8endif 9 10lib-y := ctype.o string.o vsprintf.o cmdline.o \ 11 rbtree.o radix-tree.o dump_stack.o \ 12 idr.o int_sqrt.o extable.o prio_tree.o \ 13 sha1.o irq_regs.o reciprocal_div.o argv_split.o \ --- 82 unchanged lines hidden --- | 6ORIG_CFLAGS := $(KBUILD_CFLAGS) 7KBUILD_CFLAGS = $(subst -pg,,$(ORIG_CFLAGS)) 8endif 9 10lib-y := ctype.o string.o vsprintf.o cmdline.o \ 11 rbtree.o radix-tree.o dump_stack.o \ 12 idr.o int_sqrt.o extable.o prio_tree.o \ 13 sha1.o irq_regs.o reciprocal_div.o argv_split.o \ --- 82 unchanged lines hidden --- |