1998-02-12 15:39:08 +01:00
|
|
|
# Process this file with automake to produce Makefile.in
|
|
|
|
# Copyright (C) 1995-1996 Jean-loup Gailly.
|
|
|
|
# For conditions of distribution and use, see copyright notice in zlib.h
|
|
|
|
# This is used if a systems lacks support of zlib
|
|
|
|
|
1999-01-21 06:25:29 +01:00
|
|
|
EXTRA_DIST = README algorithm.doc ChangeLog
|
1998-02-13 21:58:50 +01:00
|
|
|
|
|
|
|
# I found no other easy way to use this only if zlib is neede
|
|
|
|
# doing this with SUBDIR = @xxx@ in the top Makefile.am does not
|
|
|
|
# work because automake doesn't scan this Makefile.am here.
|
|
|
|
if ENABLE_LOCAL_ZLIB
|
1998-02-12 15:39:08 +01:00
|
|
|
noinst_LIBRARIES = libzlib.a
|
1998-02-13 21:58:50 +01:00
|
|
|
endif
|
1998-02-12 15:39:08 +01:00
|
|
|
|
|
|
|
|
1999-01-21 06:25:29 +01:00
|
|
|
libzlib_a_SOURCES = adler32.c compress.c crc32.c \
|
1998-02-12 15:39:08 +01:00
|
|
|
uncompr.c deflate.c trees.c zutil.c \
|
|
|
|
inflate.c infblock.c inftrees.c \
|
|
|
|
infcodes.c infutil.c inffast.c \
|
1999-01-21 06:25:29 +01:00
|
|
|
deflate.h infblock.h infcodes.h inffast.h \
|
|
|
|
inffixed.h inftrees.h infutil.h trees.h \
|
|
|
|
zconf.h zlib.h zutil.h
|
1998-02-12 15:39:08 +01:00
|
|
|
|
|
|
|
|
1999-01-21 06:25:29 +01:00
|
|
|
CLEANFILES = foo.gz
|
1998-02-12 15:39:08 +01:00
|
|
|
|
|
|
|
|
1998-02-13 21:58:50 +01:00
|
|
|
|