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
9O_TARGET    := zlib_deflate.o
10
11export-objs := deflate_syms.o
12
13obj-y := deflate.o deftree.o deflate_syms.o
14obj-m := $(O_TARGET)
15
16EXTRA_CFLAGS += -I $(TOPDIR)/lib/zlib_deflate
17
18include $(TOPDIR)/Rules.make
19