Add the rt linux 4.1.3-rt3 as base
[kvmfornfv.git] / kernel / arch / xtensa / boot / lib / Makefile
1 #
2 # Makefile for some libs needed by zImage.
3 #
4
5 zlib    := inffast.c inflate.c inftrees.c
6
7 lib-y   += $(zlib:.c=.o) zmem.o
8
9 ccflags-y       := -Ilib/zlib_inflate
10 ifdef CONFIG_FUNCTION_TRACER
11 CFLAGS_REMOVE_inflate.o = -pg
12 CFLAGS_REMOVE_zmem.o = -pg
13 CFLAGS_REMOVE_inftrees.o = -pg
14 CFLAGS_REMOVE_inffast.o = -pg
15 endif
16
17
18 quiet_cmd_copy_zlib = COPY    $@
19       cmd_copy_zlib = cat $< > $@
20
21 $(addprefix $(obj)/,$(zlib)): $(obj)/%: $(srctree)/lib/zlib_inflate/%
22         $(call cmd,copy_zlib)
23
24 clean-files     := $(zlib)