All the CMakeLists.txt files were missing from the distribution tarball.
This commit is contained in:
parent
42bfc7006a
commit
1fea0da266
@ -38,13 +38,14 @@ docfiles = \
|
||||
VERSION
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
HOWTO-RELEASE \
|
||||
Makefile.vc \
|
||||
SConstruct \
|
||||
autogen.sh \
|
||||
configure.com \
|
||||
nmake.opt \
|
||||
libtiff-4.pc.in
|
||||
libtiff-4.pc.in \
|
||||
nmake.opt
|
||||
|
||||
dist_doc_DATA = $(docfiles)
|
||||
|
||||
|
@ -424,13 +424,14 @@ docfiles = \
|
||||
VERSION
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
HOWTO-RELEASE \
|
||||
Makefile.vc \
|
||||
SConstruct \
|
||||
autogen.sh \
|
||||
configure.com \
|
||||
nmake.opt \
|
||||
libtiff-4.pc.in
|
||||
libtiff-4.pc.in \
|
||||
nmake.opt
|
||||
|
||||
dist_doc_DATA = $(docfiles)
|
||||
SUBDIRS = port libtiff tools build contrib test man html
|
||||
|
@ -24,7 +24,9 @@
|
||||
|
||||
# Process this file with automake to produce Makefile.in.
|
||||
|
||||
EXTRA_DIST = README
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
README
|
||||
|
||||
SUBDIRS =
|
||||
|
||||
|
@ -356,7 +356,10 @@ tiff_libs_private = @tiff_libs_private@
|
||||
top_build_prefix = @top_build_prefix@
|
||||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
EXTRA_DIST = README
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
README
|
||||
|
||||
SUBDIRS =
|
||||
all: all-recursive
|
||||
|
||||
|
@ -23,7 +23,9 @@
|
||||
|
||||
# Process this file with automake to produce Makefile.in.
|
||||
|
||||
EXTRA_DIST = README
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
README
|
||||
|
||||
SUBDIRS = addtiffo dbs iptcutil mfs pds ras stream tags win_dib
|
||||
|
||||
|
@ -355,7 +355,10 @@ tiff_libs_private = @tiff_libs_private@
|
||||
top_build_prefix = @top_build_prefix@
|
||||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
EXTRA_DIST = README
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
README
|
||||
|
||||
SUBDIRS = addtiffo dbs iptcutil mfs pds ras stream tags win_dib
|
||||
all: all-recursive
|
||||
|
||||
|
@ -25,7 +25,10 @@
|
||||
|
||||
LIBTIFF = $(top_builddir)/libtiff/libtiff.la
|
||||
|
||||
EXTRA_DIST = README Makefile.vc
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.vc \
|
||||
README
|
||||
|
||||
noinst_PROGRAMS = addtiffo
|
||||
|
||||
|
@ -347,7 +347,11 @@ top_build_prefix = @top_build_prefix@
|
||||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
LIBTIFF = $(top_builddir)/libtiff/libtiff.la
|
||||
EXTRA_DIST = README Makefile.vc
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.vc \
|
||||
README
|
||||
|
||||
addtiffo_SOURCES = addtiffo.c tif_overview.c tif_ovrcache.c tif_ovrcache.h
|
||||
addtiffo_LDADD = $(LIBTIFF)
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/libtiff
|
||||
|
@ -27,7 +27,9 @@ SUBDIRS = xtiff
|
||||
|
||||
LIBTIFF = $(top_builddir)/libtiff/libtiff.la
|
||||
|
||||
EXTRA_DIST = README
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
README
|
||||
|
||||
noinst_PROGRAMS = tiff-bi tiff-grayscale tiff-palette tiff-rgb
|
||||
|
||||
|
@ -401,7 +401,10 @@ top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
SUBDIRS = xtiff
|
||||
LIBTIFF = $(top_builddir)/libtiff/libtiff.la
|
||||
EXTRA_DIST = README
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
README
|
||||
|
||||
tiff_bi_SOURCES = tiff-bi.c
|
||||
tiff_bi_LDADD = $(LIBTIFF)
|
||||
tiff_grayscale_SOURCES = tiff-grayscale.c
|
||||
|
@ -26,7 +26,12 @@
|
||||
|
||||
#LIBTIFF = $(top_builddir)/libtiff/libtiff.la
|
||||
|
||||
EXTRA_DIST = README patchlevel.h xtiff.c xtifficon.h
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
README \
|
||||
patchlevel.h \
|
||||
xtiff.c \
|
||||
xtifficon.h
|
||||
|
||||
#noinst_PROGRAMS =
|
||||
|
||||
|
@ -298,7 +298,13 @@ tiff_libs_private = @tiff_libs_private@
|
||||
top_build_prefix = @top_build_prefix@
|
||||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
EXTRA_DIST = README patchlevel.h xtiff.c xtifficon.h
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
README \
|
||||
patchlevel.h \
|
||||
xtiff.c \
|
||||
xtifficon.h
|
||||
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
|
@ -25,7 +25,11 @@
|
||||
|
||||
LIBTIFF = $(top_builddir)/libtiff/libtiff.la
|
||||
|
||||
EXTRA_DIST = README test.iptc test.txt
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
README \
|
||||
test.iptc \
|
||||
test.txt
|
||||
|
||||
noinst_PROGRAMS = iptcutil
|
||||
|
||||
|
@ -346,7 +346,12 @@ top_build_prefix = @top_build_prefix@
|
||||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
LIBTIFF = $(top_builddir)/libtiff/libtiff.la
|
||||
EXTRA_DIST = README test.iptc test.txt
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
README \
|
||||
test.iptc \
|
||||
test.txt
|
||||
|
||||
iptcutil_SOURCES = iptcutil.c
|
||||
iptcutil_LDADD = $(LIBTIFF)
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/libtiff
|
||||
|
@ -23,5 +23,7 @@
|
||||
|
||||
# Process this file with automake to produce Makefile.in.
|
||||
|
||||
EXTRA_DIST = README mfs_file.c
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
README \
|
||||
mfs_file.c
|
||||
|
@ -295,7 +295,11 @@ tiff_libs_private = @tiff_libs_private@
|
||||
top_build_prefix = @top_build_prefix@
|
||||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
EXTRA_DIST = README mfs_file.c
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
README \
|
||||
mfs_file.c
|
||||
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
|
@ -23,5 +23,10 @@
|
||||
|
||||
# Process this file with automake to produce Makefile.in.
|
||||
|
||||
EXTRA_DIST = README tif_imageiter.c tif_imageiter.h tif_pdsdirread.c tif_pdsdirwrite.c
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
README \
|
||||
tif_imageiter.c \
|
||||
tif_imageiter.h \
|
||||
tif_pdsdirread.c \
|
||||
tif_pdsdirwrite.c
|
||||
|
@ -295,7 +295,14 @@ tiff_libs_private = @tiff_libs_private@
|
||||
top_build_prefix = @top_build_prefix@
|
||||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
EXTRA_DIST = README tif_imageiter.c tif_imageiter.h tif_pdsdirread.c tif_pdsdirwrite.c
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
README \
|
||||
tif_imageiter.c \
|
||||
tif_imageiter.h \
|
||||
tif_pdsdirread.c \
|
||||
tif_pdsdirwrite.c
|
||||
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
|
@ -23,5 +23,8 @@
|
||||
|
||||
# Process this file with automake to produce Makefile.in.
|
||||
|
||||
EXTRA_DIST = README ras2tif.c tif2ras.c
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
README \
|
||||
ras2tif.c \
|
||||
tif2ras.c
|
||||
|
@ -295,7 +295,12 @@ tiff_libs_private = @tiff_libs_private@
|
||||
top_build_prefix = @top_build_prefix@
|
||||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
EXTRA_DIST = README ras2tif.c tif2ras.c
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
README \
|
||||
ras2tif.c \
|
||||
tif2ras.c
|
||||
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
|
@ -23,5 +23,8 @@
|
||||
|
||||
# Process this file with automake to produce Makefile.in.
|
||||
|
||||
EXTRA_DIST = README tiffstream.cpp tiffstream.h
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
README \
|
||||
tiffstream.cpp \
|
||||
tiffstream.h
|
||||
|
@ -295,7 +295,12 @@ tiff_libs_private = @tiff_libs_private@
|
||||
top_build_prefix = @top_build_prefix@
|
||||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
EXTRA_DIST = README tiffstream.cpp tiffstream.h
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
README \
|
||||
tiffstream.cpp \
|
||||
tiffstream.h
|
||||
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
|
@ -23,5 +23,11 @@
|
||||
|
||||
# Process this file with automake to produce Makefile.in.
|
||||
|
||||
EXTRA_DIST = README listtif.c maketif.c xtif_dir.c xtiffio.h xtiffiop.h
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
README \
|
||||
listtif.c \
|
||||
maketif.c \
|
||||
xtif_dir.c \
|
||||
xtiffio.h \
|
||||
xtiffiop.h
|
||||
|
@ -295,7 +295,15 @@ tiff_libs_private = @tiff_libs_private@
|
||||
top_build_prefix = @top_build_prefix@
|
||||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
EXTRA_DIST = README listtif.c maketif.c xtif_dir.c xtiffio.h xtiffiop.h
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
README \
|
||||
listtif.c \
|
||||
maketif.c \
|
||||
xtif_dir.c \
|
||||
xtiffio.h \
|
||||
xtiffiop.h
|
||||
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
|
@ -23,5 +23,10 @@
|
||||
|
||||
# Process this file with automake to produce Makefile.in.
|
||||
|
||||
EXTRA_DIST = Makefile.w95 README.Tiffile README.tiff2dib Tiffile.cpp tiff2dib.c
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.w95 \
|
||||
README.Tiffile \
|
||||
README.tiff2dib \
|
||||
Tiffile.cpp \
|
||||
tiff2dib.c
|
||||
|
@ -295,7 +295,14 @@ tiff_libs_private = @tiff_libs_private@
|
||||
top_build_prefix = @top_build_prefix@
|
||||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
EXTRA_DIST = Makefile.w95 README.Tiffile README.tiff2dib Tiffile.cpp tiff2dib.c
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.w95 \
|
||||
README.Tiffile \
|
||||
README.tiff2dib \
|
||||
Tiffile.cpp \
|
||||
tiff2dib.c
|
||||
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
|
@ -81,9 +81,12 @@ docfiles = \
|
||||
v4.0.2.html \
|
||||
v4.0.3.html \
|
||||
v4.0.4beta.html \
|
||||
v4.0.4.html
|
||||
v4.0.4.html \
|
||||
v4.0.5.html
|
||||
|
||||
dist_doc_DATA = $(docfiles)
|
||||
|
||||
SUBDIRS = images man
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt
|
||||
|
@ -442,10 +442,14 @@ docfiles = \
|
||||
v4.0.2.html \
|
||||
v4.0.3.html \
|
||||
v4.0.4beta.html \
|
||||
v4.0.4.html
|
||||
v4.0.4.html \
|
||||
v4.0.5.html
|
||||
|
||||
dist_doc_DATA = $(docfiles)
|
||||
SUBDIRS = images man
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt
|
||||
|
||||
all: all-recursive
|
||||
|
||||
.SUFFIXES:
|
||||
|
@ -44,3 +44,6 @@ docfiles = \
|
||||
warning.gif
|
||||
|
||||
dist_doc_DATA = $(docfiles)
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt
|
||||
|
@ -345,6 +345,9 @@ docfiles = \
|
||||
warning.gif
|
||||
|
||||
dist_doc_DATA = $(docfiles)
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt
|
||||
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
|
@ -124,3 +124,5 @@ htmldoc:
|
||||
${GROFF} $(MANSRCDIR)/$$i > $(HTMLMANDIR)/$$i.html; \
|
||||
done
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt
|
||||
|
@ -407,6 +407,9 @@ dist_doc_DATA = $(indexfile) $(docfiles)
|
||||
INDEXSTART = '<HTML><HEAD><TITLE>Libtiff HTML manpage index</TITLE></HEAD><BODY BGCOLOR=white><ul><H2>Man Pages</h2><p>'
|
||||
INDEXEND = '</ul></BODY></HTML>'
|
||||
manpages = $(docfiles:.html=)
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt
|
||||
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
|
@ -27,16 +27,18 @@ LIBPORT = $(top_builddir)/port/libport.la
|
||||
LIBTIFF = $(top_builddir)/libtiff/libtiff.la
|
||||
libtiffincludedir = $(includedir)
|
||||
|
||||
EXTRA_DIST = Makefile.vc \
|
||||
SConstruct \
|
||||
tif_config.h-vms \
|
||||
tif_config.vc.h \
|
||||
tif_config.wince.h \
|
||||
tiffconf.vc.h \
|
||||
tiffconf.wince.h \
|
||||
libtiff.def \
|
||||
libtiff.map \
|
||||
libtiffxx.map
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.vc \
|
||||
SConstruct \
|
||||
libtiff.def \
|
||||
libtiff.map \
|
||||
libtiffxx.map \
|
||||
tif_config.h-vms \
|
||||
tif_config.vc.h \
|
||||
tif_config.wince.h \
|
||||
tiffconf.vc.h \
|
||||
tiffconf.wince.h
|
||||
|
||||
libtiffinclude_HEADERS = \
|
||||
tiff.h \
|
||||
|
@ -450,9 +450,10 @@ top_srcdir = @top_srcdir@
|
||||
LIBPORT = $(top_builddir)/port/libport.la
|
||||
LIBTIFF = $(top_builddir)/libtiff/libtiff.la
|
||||
libtiffincludedir = $(includedir)
|
||||
EXTRA_DIST = Makefile.vc SConstruct tif_config.h-vms tif_config.vc.h \
|
||||
tif_config.wince.h tiffconf.vc.h tiffconf.wince.h libtiff.def \
|
||||
libtiff.map libtiffxx.map $(am__append_2) $(am__append_4)
|
||||
EXTRA_DIST = CMakeLists.txt Makefile.vc SConstruct libtiff.def \
|
||||
libtiff.map libtiffxx.map tif_config.h-vms tif_config.vc.h \
|
||||
tif_config.wince.h tiffconf.vc.h tiffconf.wince.h \
|
||||
$(am__append_2) $(am__append_4)
|
||||
libtiffinclude_HEADERS = tiff.h tiffio.h tiffvers.h $(am__append_1)
|
||||
noinst_HEADERS = \
|
||||
t4.h \
|
||||
|
@ -96,3 +96,6 @@ dist_man3_MANS = \
|
||||
TIFFWriteRawTile.3tiff \
|
||||
TIFFWriteScanline.3tiff \
|
||||
TIFFWriteTile.3tiff
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt
|
||||
|
@ -401,6 +401,9 @@ dist_man3_MANS = \
|
||||
TIFFWriteScanline.3tiff \
|
||||
TIFFWriteTile.3tiff
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt
|
||||
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
|
@ -23,7 +23,11 @@
|
||||
|
||||
# Process this file with automake to produce Makefile.in.
|
||||
|
||||
EXTRA_DIST = Makefile.vc libport.h snprintf.c
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.vc \
|
||||
libport.h \
|
||||
snprintf.c
|
||||
|
||||
noinst_LTLIBRARIES = libport.la
|
||||
libport_la_SOURCES = dummy.c libport.h
|
||||
|
@ -345,7 +345,12 @@ tiff_libs_private = @tiff_libs_private@
|
||||
top_build_prefix = @top_build_prefix@
|
||||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
EXTRA_DIST = Makefile.vc libport.h snprintf.c
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.vc \
|
||||
libport.h \
|
||||
snprintf.c
|
||||
|
||||
noinst_LTLIBRARIES = libport.la
|
||||
libport_la_SOURCES = dummy.c libport.h
|
||||
libport_la_LIBADD = @LTLIBOBJS@
|
||||
|
@ -36,6 +36,7 @@ TESTS_ENVIRONMENT = \
|
||||
EXTRA_DIST = \
|
||||
$(TESTSCRIPTS) \
|
||||
$(IMAGES_EXTRA_DIST) \
|
||||
CMakeLists.txt \
|
||||
common.sh
|
||||
|
||||
# All of the tests to execute via 'make check'
|
||||
|
@ -640,6 +640,7 @@ TESTS_ENVIRONMENT = \
|
||||
EXTRA_DIST = \
|
||||
$(TESTSCRIPTS) \
|
||||
$(IMAGES_EXTRA_DIST) \
|
||||
CMakeLists.txt \
|
||||
common.sh
|
||||
|
||||
|
||||
|
@ -26,7 +26,9 @@
|
||||
LIBPORT = $(top_builddir)/port/libport.la
|
||||
LIBTIFF = $(top_builddir)/libtiff/libtiff.la
|
||||
|
||||
EXTRA_DIST = Makefile.vc
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.vc
|
||||
|
||||
bin_PROGRAMS = \
|
||||
bmp2tiff \
|
||||
|
@ -457,7 +457,10 @@ top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
LIBPORT = $(top_builddir)/port/libport.la
|
||||
LIBTIFF = $(top_builddir)/libtiff/libtiff.la
|
||||
EXTRA_DIST = Makefile.vc
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.vc
|
||||
|
||||
@HAVE_RPATH_TRUE@AM_LDFLAGS = $(LIBDIR)
|
||||
bmp2tiff_SOURCES = bmp2tiff.c
|
||||
bmp2tiff_LDADD = $(LIBTIFF) $(LIBPORT)
|
||||
|
Loading…
Reference in New Issue
Block a user