2007-12-09 00:42:33 +02:00
|
|
|
##
|
2009-04-13 11:27:40 +03:00
|
|
|
## Author: Lasse Collin
|
2007-12-09 00:42:33 +02:00
|
|
|
##
|
2009-04-13 11:27:40 +03:00
|
|
|
## This file has been put into the public domain.
|
|
|
|
## You can do whatever you want with this file.
|
2007-12-09 00:42:33 +02:00
|
|
|
##
|
|
|
|
|
2008-01-18 20:18:08 +02:00
|
|
|
DIST_SUBDIRS = lib src po tests debug
|
2007-12-09 00:42:33 +02:00
|
|
|
SUBDIRS =
|
|
|
|
|
|
|
|
if COND_GNULIB
|
|
|
|
SUBDIRS += lib
|
|
|
|
endif
|
|
|
|
|
|
|
|
SUBDIRS += src po tests
|
|
|
|
|
2009-08-27 18:36:59 +03:00
|
|
|
dist_doc_DATA = \
|
2009-07-19 13:14:20 +03:00
|
|
|
AUTHORS \
|
|
|
|
COPYING \
|
|
|
|
COPYING.GPLv2 \
|
|
|
|
NEWS \
|
|
|
|
README \
|
|
|
|
THANKS \
|
|
|
|
TODO \
|
2009-08-18 00:30:09 +03:00
|
|
|
doc/faq.txt \
|
2009-07-24 13:15:06 +03:00
|
|
|
doc/history.txt \
|
2009-07-19 13:14:20 +03:00
|
|
|
doc/xz-file-format.txt \
|
|
|
|
doc/lzma-file-format.txt
|
|
|
|
|
2007-12-09 00:42:33 +02:00
|
|
|
EXTRA_DIST = \
|
2009-08-27 16:36:40 +03:00
|
|
|
extra \
|
2009-08-27 15:34:45 +03:00
|
|
|
dos \
|
2009-02-05 21:21:27 +02:00
|
|
|
windows \
|
2009-08-27 16:36:40 +03:00
|
|
|
autogen.sh \
|
|
|
|
version.sh \
|
|
|
|
Doxyfile.in \
|
2007-12-09 00:42:33 +02:00
|
|
|
COPYING.GPLv2 \
|
|
|
|
COPYING.GPLv3 \
|
2009-08-27 16:36:40 +03:00
|
|
|
COPYING.LGPLv2.1 \
|
|
|
|
INSTALL.generic \
|
|
|
|
PACKAGERS
|
2007-12-09 00:42:33 +02:00
|
|
|
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
2008-04-25 13:32:35 +03:00
|
|
|
|
2009-07-12 19:08:30 +03:00
|
|
|
# List of man pages to conver to PDF and plain text in the dist-hook target.
|
|
|
|
manfiles = \
|
2009-08-13 09:37:21 +03:00
|
|
|
src/xz/xz.1 \
|
2009-07-12 19:08:30 +03:00
|
|
|
src/xzdec/xzdec.1 \
|
2010-01-29 13:24:27 +02:00
|
|
|
src/lzmainfo/lzmainfo.1 \
|
2009-07-12 19:08:30 +03: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 18:36:59 +03:00
|
|
|
if test -d "$(srcdir)/.git" && type git > /dev/null 2>&1; then \
|
|
|
|
( cd "$(srcdir)" && git log --date=iso --stat ) \
|
|
|
|
> "$(distdir)/ChangeLog"; \
|
|
|
|
fi
|
2009-07-12 19:08:30 +03:00
|
|
|
if type groff > /dev/null 2>&1 && type ps2pdf > /dev/null 2>&1; then \
|
|
|
|
dest="$(distdir)/doc/man" && \
|
2009-08-27 18:36:59 +03:00
|
|
|
$(MKDIR_P) "$$dest/pdf-a4" "$$dest/pdf-letter" "$$dest/txt" && \
|
2009-07-12 19:08:30 +03:00
|
|
|
for FILE in $(manfiles); do \
|
|
|
|
BASE=`basename $$FILE .1` && \
|
|
|
|
groff -man -t -Tps -P-pa4 < "$(srcdir)/$$FILE" \
|
|
|
|
| ps2pdf - - \
|
|
|
|
> "$$dest/pdf-a4/$$BASE-a4.pdf" && \
|
|
|
|
groff -man -t -Tps -P-pletter < "$(srcdir)/$$FILE" \
|
|
|
|
| ps2pdf - - \
|
|
|
|
> "$$dest/pdf-letter/$$BASE-letter.pdf" && \
|
|
|
|
groff -man -t -Tascii < "$(srcdir)/$$FILE" \
|
|
|
|
| col -bx > "$$dest/txt/$$BASE.txt"; \
|
|
|
|
done; \
|
|
|
|
fi
|
|
|
|
|
2008-04-25 13:32:35 +03:00
|
|
|
# This works with GNU tar and gives cleaner package than normal 'make dist'.
|
|
|
|
mydist:
|
|
|
|
TAR_OPTIONS='--owner=0 --group=0 --numeric-owner --mode=u+rw,go+r-w' \
|
|
|
|
$(MAKE) dist-gzip
|