https://github.com/torvalds/linux
Raw File
Tip revision: b7392d2247cfe6771f95d256374f1a8e6a6f48d6 authored by Linus Torvalds on 29 December 2014, 00:49:37 UTC
Linux 3.19-rc2
Tip revision: b7392d2
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