| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 | #	Copyright (C) 2011 Michael McMaster <michael@codesrc.com>##	This file is part of libzipper.##	libzipper is free software: you can redistribute it and/or modify#	it under the terms of the GNU General Public License as published by#	the Free Software Foundation, either version 3 of the License, or#	(at your option) any later version.##	libzipper is distributed in the hope that it will be useful,#	but WITHOUT ANY WARRANTY; without even the implied warranty of#	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the#	GNU General Public License for more details.##	You should have received a copy of the GNU General Public License#	along with libzipper.  If not, see <http://www.gnu.org/licenses/>.AUTOMAKE_OPTIONS = subdir-objectsinclude doxygen.amdist_noinst_SCRIPTS = \	autogen.shpkgconfigdir = $(libdir)/pkgconfigpkgconfig_DATA = libzipper1.pcEXTRA_DIST = \	COPYING \	INSTALL \	INSTALL.Android \	NEWS \	README \	VERSION \	android/zipper/Android.mklib_LTLIBRARIES = libzipper.lalibzipper_la_SOURCES = \	Compressor.cc \	CompressedFile.cc \	Container.cc \	Decompressor.cc \	deflate.cc \	deflate.hh \	Exception.cc \	FileReader.cc \	FileWriter.cc \	gzip.cc \	gzip.hh \	Reader.cc \	split.hh \	strerror.hh \	util.hh \	Writer.cc \	zip.hh \	zip.ccif HAVE_GNU_STRERRORlibzipper_la_SOURCES += \	port/strerror_gnu.ccelselibzipper_la_SOURCES += \	port/strerror_posix.ccendifif !HAVE_PREADlibzipper_la_SOURCES += \	port/pread.cendifif !HAVE_PWRITElibzipper_la_SOURCES += \	port/pwrite.cendifif !HAVE_UTIMESlibzipper_la_SOURCES += \	port/utimes.cendif# Public API headers go here, for installation to /usr/includeinclude_HEADERS = zipper.hhlibzipper_la_LDFLAGS = ${ZLIB_LIBS} -version-info 1:0libzipper_la_CFLAGS = ${ZLIB_CFLAGS}bin_PROGRAMS = zipperman_MANS = zipper.1zipper_SOURCES = \	zipper.cczipper_LDADD = libzipper.laCXXFLAGS=-g -O2 -W -Wall -std=c++0xMOSTLYCLEANFILES=$(DX_CLEANFILES)install-data-local: doxygen-installall-local: doxygen-doc
 |