diff options
Diffstat (limited to 'lib/zlib_deflate/Makefile')
-rw-r--r-- | lib/zlib_deflate/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/zlib_deflate/Makefile b/lib/zlib_deflate/Makefile new file mode 100644 index 000000000000..86275e3fdcbc --- /dev/null +++ b/lib/zlib_deflate/Makefile | |||
@@ -0,0 +1,11 @@ | |||
1 | # | ||
2 | # This is a modified version of zlib, which does all memory | ||
3 | # allocation ahead of time. | ||
4 | # | ||
5 | # This is the compression code, see zlib_inflate for the | ||
6 | # decompression code. | ||
7 | # | ||
8 | |||
9 | obj-$(CONFIG_ZLIB_DEFLATE) += zlib_deflate.o | ||
10 | |||
11 | zlib_deflate-objs := deflate.o deftree.o deflate_syms.o | ||