shithub: aacdec

ref: 70d8b0d6858c03a2de235e070e12f8e55859cf65
dir: /common/id3lib/zlib/src/Makefile.am/

View raw version
# Copyright (C) 1999 Scott Thomas Haug <sth2@cs.wustl.edu>
#  
# This file is free software; as a special exception the author gives
# unlimited permission to copy and/or distribute it, with or without 
# modifications, as long as this notice is preserved.
# 
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

zlib_sources = \
  adler32.c  \
  compress.c \
  crc32.c    \
  deflate.c  \
  gzio.c     \
  infblock.c \
  infcodes.c \
  inffast.c  \
  inflate.c  \
  inftrees.c \
  infutil.c  \
  trees.c    \
  uncompr.c  \
  zutil.c

if ID3_NEEDZLIB
LT_VERSION = 1:0:0
lib_LTLIBRARIES = libz.la
INCLUDES = -I$(top_srcdir)/zlib/include
libz_la_SOURCES = $(zlib_sources)
else
LT_VERSION = 0:0:0
endif
libz_la_LDFLAGS = -version-info $(LT_VERSION)

EXTRA_DIST = $(zlib_sources)