Blame Makefile.am

Packit Service db44fb
# Tag Image File Format (TIFF) Software
Packit Service db44fb
#
Packit Service db44fb
# Copyright (C) 2004, Andrey Kiselev <dron@ak4719.spb.edu>
Packit Service db44fb
#
Packit Service db44fb
# Permission to use, copy, modify, distribute, and sell this software and 
Packit Service db44fb
# its documentation for any purpose is hereby granted without fee, provided
Packit Service db44fb
# that (i) the above copyright notices and this permission notice appear in
Packit Service db44fb
# all copies of the software and related documentation, and (ii) the names of
Packit Service db44fb
# Sam Leffler and Silicon Graphics may not be used in any advertising or
Packit Service db44fb
# publicity relating to the software without the specific, prior written
Packit Service db44fb
# permission of Sam Leffler and Silicon Graphics.
Packit Service db44fb
# 
Packit Service db44fb
# THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
Packit Service db44fb
# EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
Packit Service db44fb
# WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
Packit Service db44fb
# 
Packit Service db44fb
# IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
Packit Service db44fb
# ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
Packit Service db44fb
# OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
Packit Service db44fb
# WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
Packit Service db44fb
# LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
Packit Service db44fb
# OF THIS SOFTWARE.
Packit Service db44fb
Packit Service db44fb
# Process this file with automake to produce Makefile.in.
Packit Service db44fb
Packit Service db44fb
docdir = $(LIBTIFF_DOCDIR)
Packit Service db44fb
Packit Service db44fb
AUTOMAKE_OPTIONS = 1.11 dist-zip foreign
Packit Service db44fb
ACLOCAL_AMFLAGS = -I m4
Packit Service db44fb
Packit Service db44fb
docfiles = \
Packit Service db44fb
	COPYRIGHT \
Packit Service db44fb
	ChangeLog \
Packit Service db44fb
	README \
Packit Service db44fb
	README.vms \
Packit Service db44fb
	RELEASE-DATE \
Packit Service db44fb
	TODO \
Packit Service db44fb
	VERSION
Packit Service db44fb
Packit Service db44fb
EXTRA_DIST = \
Packit Service db44fb
	HOWTO-RELEASE \
Packit Service db44fb
	Makefile.vc \
Packit Service db44fb
	SConstruct \
Packit Service db44fb
	autogen.sh \
Packit Service db44fb
	configure.com \
Packit Service db44fb
	nmake.opt
Packit Service db44fb
Packit Service db44fb
dist_doc_DATA = $(docfiles)
Packit Service db44fb
Packit Service db44fb
SUBDIRS = port libtiff tools build contrib test man html
Packit Service db44fb
Packit Service db44fb
release:
Packit Service db44fb
	(rm -f $(top_srcdir)/RELEASE-DATE && echo $(LIBTIFF_RELEASE_DATE) > $(top_srcdir)/RELEASE-DATE)
Packit Service db44fb
	(rm -f $(top_srcdir)/VERSION && echo $(LIBTIFF_VERSION) > $(top_srcdir)/VERSION)
Packit Service db44fb
	(rm -f $(top_srcdir)/libtiff/tiffvers.h && sed 's,LIBTIFF_VERSION,$(LIBTIFF_VERSION),;s,LIBTIFF_RELEASE_DATE,$(LIBTIFF_RELEASE_DATE),' $(top_srcdir)/libtiff/tiffvers.h.in > $(top_srcdir)/libtiff/tiffvers.h)
Packit Service db44fb