https://github.com/torvalds/linux
Raw File
Tip revision: 427abfa28afedffadfca9dd8b067eb6d36bac53f authored by Linus Torvalds on 18 June 2006, 01:49:35 UTC
Linux v2.6.17
Tip revision: 427abfa
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