2007-12-08 22:42:33 +00:00
|
|
|
##
|
2009-04-13 08:27:40 +00:00
|
|
|
## Author: Lasse Collin
|
2007-12-08 22:42:33 +00:00
|
|
|
##
|
2009-04-13 08:27:40 +00:00
|
|
|
## This file has been put into the public domain.
|
|
|
|
## You can do whatever you want with this file.
|
2007-12-08 22:42:33 +00:00
|
|
|
##
|
|
|
|
|
2011-05-23 15:30:30 +00:00
|
|
|
# Use -n to prevent gzip from adding a timestamp to the .gz headers.
|
|
|
|
GZIP_ENV = -9n
|
|
|
|
|
2008-01-18 18:18:08 +00:00
|
|
|
DIST_SUBDIRS = lib src po tests debug
|
2007-12-08 22:42:33 +00:00
|
|
|
SUBDIRS =
|
|
|
|
|
|
|
|
if COND_GNULIB
|
|
|
|
SUBDIRS += lib
|
|
|
|
endif
|
|
|
|
|
|
|
|
SUBDIRS += src po tests
|
|
|
|
|
2014-04-25 14:44:26 +00:00
|
|
|
if COND_DOC
|
2009-08-27 15:36:59 +00:00
|
|
|
dist_doc_DATA = \
|
2009-07-19 10:14:20 +00:00
|
|
|
AUTHORS \
|
|
|
|
COPYING \
|
|
|
|
COPYING.GPLv2 \
|
|
|
|
NEWS \
|
|
|
|
README \
|
|
|
|
THANKS \
|
|
|
|
TODO \
|
2009-08-17 21:30:09 +00:00
|
|
|
doc/faq.txt \
|
2009-07-24 10:15:06 +00:00
|
|
|
doc/history.txt \
|
2009-07-19 10:14:20 +00:00
|
|
|
doc/xz-file-format.txt \
|
|
|
|
doc/lzma-file-format.txt
|
|
|
|
|
2010-10-26 12:48:48 +00:00
|
|
|
examplesdir = $(docdir)/examples
|
|
|
|
dist_examples_DATA = \
|
2012-06-14 17:15:30 +00:00
|
|
|
doc/examples/00_README.txt \
|
|
|
|
doc/examples/01_compress_easy.c \
|
|
|
|
doc/examples/02_decompress.c \
|
|
|
|
doc/examples/03_compress_custom.c \
|
2014-12-21 16:01:45 +00:00
|
|
|
doc/examples/04_compress_easy_mt.c \
|
2012-06-14 17:15:30 +00:00
|
|
|
doc/examples/Makefile
|
|
|
|
|
|
|
|
examplesolddir = $(docdir)/examples_old
|
|
|
|
dist_examplesold_DATA = \
|
|
|
|
doc/examples_old/xz_pipe_comp.c \
|
|
|
|
doc/examples_old/xz_pipe_decomp.c
|
2014-04-25 14:44:26 +00:00
|
|
|
endif
|
2010-10-26 12:48:48 +00:00
|
|
|
|
2007-12-08 22:42:33 +00:00
|
|
|
EXTRA_DIST = \
|
2020-02-07 13:32:21 +00:00
|
|
|
po4a \
|
2009-08-27 13:36:40 +00:00
|
|
|
extra \
|
2009-08-27 12:34:45 +00:00
|
|
|
dos \
|
2009-02-05 19:21:27 +00:00
|
|
|
windows \
|
2012-07-05 04:33:35 +00:00
|
|
|
macosx \
|
2009-08-27 13:36:40 +00:00
|
|
|
autogen.sh \
|
|
|
|
Doxyfile.in \
|
2007-12-08 22:42:33 +00:00
|
|
|
COPYING.GPLv2 \
|
|
|
|
COPYING.GPLv3 \
|
2009-08-27 13:36:40 +00:00
|
|
|
COPYING.LGPLv2.1 \
|
|
|
|
INSTALL.generic \
|
2010-09-28 07:59:53 +00:00
|
|
|
PACKAGERS \
|
2010-09-28 08:40:12 +00:00
|
|
|
build-aux/manconv.sh \
|
2010-09-28 07:59:53 +00:00
|
|
|
build-aux/version.sh
|
2007-12-08 22:42:33 +00:00
|
|
|
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
2008-04-25 10:32:35 +00:00
|
|
|
|
2020-03-23 16:07:50 +00:00
|
|
|
# List of man pages to convert to PDF and plain text in the dist-hook target.
|
2009-07-12 16:08:30 +00:00
|
|
|
manfiles = \
|
2009-08-13 06:37:21 +00:00
|
|
|
src/xz/xz.1 \
|
2009-07-12 16:08:30 +00:00
|
|
|
src/xzdec/xzdec.1 \
|
2010-01-29 11:24:27 +00:00
|
|
|
src/lzmainfo/lzmainfo.1 \
|
2009-07-12 16:08:30 +00:00
|
|
|
src/scripts/xzdiff.1 \
|
|
|
|
src/scripts/xzgrep.1 \
|
|
|
|
src/scripts/xzless.1 \
|
|
|
|
src/scripts/xzmore.1
|
|
|
|
|
|
|
|
# Create ChangeLog from output of "git log --date=iso --stat".
|
|
|
|
# Convert the man pages to PDF and plain text (ASCII only) formats.
|
|
|
|
dist-hook:
|
2009-08-27 15:36:59 +00:00
|
|
|
if test -d "$(srcdir)/.git" && type git > /dev/null 2>&1; then \
|
2017-04-24 16:48:47 +00:00
|
|
|
( cd "$(srcdir)" && git log --date=iso --stat \
|
|
|
|
b667a3ef6338a2c1db7b7706b1f6c99ea392221c^..HEAD ) \
|
2009-08-27 15:36:59 +00:00
|
|
|
> "$(distdir)/ChangeLog"; \
|
|
|
|
fi
|
2009-07-12 16:08:30 +00:00
|
|
|
if type groff > /dev/null 2>&1 && type ps2pdf > /dev/null 2>&1; then \
|
|
|
|
dest="$(distdir)/doc/man" && \
|
2009-08-27 15:36:59 +00:00
|
|
|
$(MKDIR_P) "$$dest/pdf-a4" "$$dest/pdf-letter" "$$dest/txt" && \
|
2009-07-12 16:08:30 +00:00
|
|
|
for FILE in $(manfiles); do \
|
|
|
|
BASE=`basename $$FILE .1` && \
|
2010-09-28 08:40:12 +00:00
|
|
|
sh "$(srcdir)/build-aux/manconv.sh" pdf a4 \
|
|
|
|
< "$(srcdir)/$$FILE" \
|
2009-07-12 16:08:30 +00:00
|
|
|
> "$$dest/pdf-a4/$$BASE-a4.pdf" && \
|
2010-09-28 08:40:12 +00:00
|
|
|
sh "$(srcdir)/build-aux/manconv.sh" pdf letter \
|
|
|
|
< "$(srcdir)/$$FILE" \
|
2009-07-12 16:08:30 +00:00
|
|
|
> "$$dest/pdf-letter/$$BASE-letter.pdf" && \
|
2010-09-28 08:40:12 +00:00
|
|
|
sh "$(srcdir)/build-aux/manconv.sh" ascii \
|
|
|
|
< "$(srcdir)/$$FILE" \
|
|
|
|
> "$$dest/txt/$$BASE.txt"; \
|
2009-07-12 16:08:30 +00:00
|
|
|
done; \
|
|
|
|
fi
|
|
|
|
|
2008-04-25 10:32:35 +00:00
|
|
|
# This works with GNU tar and gives cleaner package than normal 'make dist'.
|
2020-02-07 13:32:21 +00:00
|
|
|
# This also ensures that the man page translations are up to date (dist-hook
|
|
|
|
# would be too late for that).
|
2008-04-25 10:32:35 +00:00
|
|
|
mydist:
|
2011-05-28 12:55:39 +00:00
|
|
|
sh "$(srcdir)/src/liblzma/validate_map.sh"
|
2020-02-07 13:32:21 +00:00
|
|
|
cd "$(srcdir)/po4a" && sh update-po
|
2010-10-23 14:25:52 +00:00
|
|
|
VERSION=$(VERSION); \
|
2010-06-11 07:40:28 +00:00
|
|
|
if test -d "$(srcdir)/.git" && type git > /dev/null 2>&1; then \
|
|
|
|
SNAPSHOT=`cd "$(srcdir)" && git describe --abbrev=4 | cut -b2-`; \
|
|
|
|
test -n "$$SNAPSHOT" && VERSION=$$SNAPSHOT; \
|
|
|
|
fi; \
|
2008-04-25 10:32:35 +00:00
|
|
|
TAR_OPTIONS='--owner=0 --group=0 --numeric-owner --mode=u+rw,go+r-w' \
|
2010-06-11 07:40:28 +00:00
|
|
|
$(MAKE) VERSION="$$VERSION" dist-gzip
|