You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
372 B
17 lines
372 B
#
|
|
# Makefile for some libs needed by zImage.
|
|
#
|
|
|
|
zlib := infblock.c infcodes.c inffast.c inflate.c inftrees.c infutil.c
|
|
|
|
lib-y += $(zlib:.c=.o) zmem.o
|
|
|
|
EXTRA_CFLAGS += -Ilib/zlib_inflate
|
|
|
|
quiet_cmd_copy_zlib = COPY $@
|
|
cmd_copy_zlib = cat $< > $@
|
|
|
|
$(addprefix $(obj)/,$(zlib)): $(obj)/%: $(srctree)/lib/zlib_inflate/%
|
|
$(call cmd,copy_zlib)
|
|
|
|
clean-files := $(zlib)
|
|
|