https://github.com/torvalds/linux
Raw File
Tip revision: ef954844c7ace62f773f4f23e28d2d915adc419f authored by Linus Torvalds on 13 August 2017, 23:01:32 UTC
Linux 4.13-rc5
Tip revision: ef95484
Makefile
#
# This is a modified version of zlib, which does all memory
# allocation ahead of time.
#
# This is the compression code, see zlib_inflate for the
# decompression code.
#

obj-$(CONFIG_ZLIB_DEFLATE) += zlib_deflate.o

zlib_deflate-objs := deflate.o deftree.o deflate_syms.o
back to top