https://github.com/torvalds/linux
Raw File
Tip revision: b1940cd21c0f4abdce101253e860feff547291b0 authored by Linus Torvalds on 06 January 2015, 01:05:20 UTC
Linux 3.19-rc3
Tip revision: b1940cd
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