[BACK]Return to Makefile CVS log [TXT][DIR] Up to [Development] / linux-2.4-xfs / lib / zlib_inflate

File: [Development] / linux-2.4-xfs / lib / zlib_inflate / Makefile (download)

Revision 1.1, Wed Dec 31 00:54:49 2003 UTC (13 years, 9 months ago) by cattelan
Branch: MAIN
CVS Tags: HEAD

Initial Import 2.4.24pre2

#
# This is a modified version of zlib, which does all memory
# allocation ahead of time.
#
# This is only the decompression, see zlib_deflate for the
# the compression
#
# Decompression needs to be serialized for each memory
# allocation.
#
# (The upsides of the simplification is that you can't get in
# any nasty situations wrt memory management, and that the
# uncompression can be done without blocking on allocation).
#

O_TARGET    := zlib_inflate.o

export-objs := inflate_syms.o

obj-y := infblock.o infcodes.o inffast.o inflate.o \
	 inftrees.o infutil.o inflate_syms.o
obj-m := $(O_TARGET)

EXTRA_CFLAGS += -I $(TOPDIR)/lib/zlib_inflate

include $(TOPDIR)/Rules.make