]> icculus.org git repositories - icculus/xz.git/blob - Makefile.am
Updates to liblzma API headers.
[icculus/xz.git] / Makefile.am
1 ##
2 ## Author: Lasse Collin
3 ##
4 ## This file has been put into the public domain.
5 ## You can do whatever you want with this file.
6 ##
7
8 DIST_SUBDIRS = lib src po tests debug
9 SUBDIRS =
10
11 if COND_GNULIB
12 SUBDIRS += lib
13 endif
14
15 SUBDIRS += src po tests
16
17 doc_DATA = \
18         AUTHORS \
19         COPYING \
20         COPYING.GPLv2 \
21         NEWS \
22         README \
23         THANKS \
24         TODO \
25         doc/faq.txt \
26         doc/history.txt \
27         doc/xz-file-format.txt \
28         doc/lzma-file-format.txt
29
30 EXTRA_DIST = \
31         version.sh \
32         Doxyfile.in \
33         extra \
34         doc \
35         windows \
36         COPYING.GPLv2 \
37         COPYING.GPLv3 \
38         COPYING.LGPLv2.1
39
40 ACLOCAL_AMFLAGS = -I m4
41
42 # List of man pages to conver to PDF and plain text in the dist-hook target.
43 manfiles = \
44         src/xz/xz.1 \
45         src/xzdec/xzdec.1 \
46         src/scripts/xzdiff.1 \
47         src/scripts/xzgrep.1 \
48         src/scripts/xzless.1 \
49         src/scripts/xzmore.1
50
51 # Create ChangeLog from output of "git log --date=iso --stat".
52 # Convert the man pages to PDF and plain text (ASCII only) formats.
53 dist-hook:
54         test -d "$(srcdir)/.git" && type git > /dev/null 2>&1 \
55                 && ( cd "$(srcdir)" && git log --date=iso --stat ) \
56                         > "$(distdir)/ChangeLog"
57         if type groff > /dev/null 2>&1 && type ps2pdf > /dev/null 2>&1; then \
58                 dest="$(distdir)/doc/man" && \
59                 mkdir "$$dest" && \
60                 mkdir "$$dest/pdf-a4" "$$dest/pdf-letter" "$$dest/txt" && \
61                 for FILE in $(manfiles); do \
62                         BASE=`basename $$FILE .1` && \
63                         groff -man -t -Tps -P-pa4 < "$(srcdir)/$$FILE" \
64                                 | ps2pdf - - \
65                                 > "$$dest/pdf-a4/$$BASE-a4.pdf" && \
66                         groff -man -t -Tps -P-pletter < "$(srcdir)/$$FILE" \
67                                 | ps2pdf - - \
68                                 > "$$dest/pdf-letter/$$BASE-letter.pdf" && \
69                         groff -man -t -Tascii < "$(srcdir)/$$FILE" \
70                                 | col -bx > "$$dest/txt/$$BASE.txt"; \
71                 done; \
72         fi
73
74 # This works with GNU tar and gives cleaner package than normal 'make dist'.
75 mydist:
76         TAR_OPTIONS='--owner=0 --group=0 --numeric-owner --mode=u+rw,go+r-w' \
77                 $(MAKE) dist-gzip