]> icculus.org git repositories - icculus/xz.git/blob - Makefile.am
Use AC_CONFIG_AUX_DIR to clean up the toplevel directory
[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 EXTRA_DIST = \
18         version.sh \
19         Doxyfile.in \
20         extra \
21         doc \
22         windows \
23         COPYING.GPLv2 \
24         COPYING.GPLv3 \
25         COPYING.LGPLv2.1
26
27 ACLOCAL_AMFLAGS = -I m4
28
29 # List of man pages to conver to PDF and plain text in the dist-hook target.
30 manfiles = \
31         src/xzdec/xzdec.1 \
32         src/scripts/xzdiff.1 \
33         src/scripts/xzgrep.1 \
34         src/scripts/xzless.1 \
35         src/scripts/xzmore.1
36
37 # Create ChangeLog from output of "git log --date=iso --stat".
38 # Convert the man pages to PDF and plain text (ASCII only) formats.
39 dist-hook:
40         test -d "$(srcdir)/.git" && type git > /dev/null 2>&1 \
41                 && ( cd "$(srcdir)" && git log --date=iso --stat ) \
42                         > "$(distdir)/ChangeLog"
43         if type groff > /dev/null 2>&1 && type ps2pdf > /dev/null 2>&1; then \
44                 dest="$(distdir)/doc/man" && \
45                 mkdir "$$dest" && \
46                 mkdir "$$dest/pdf-a4" "$$dest/pdf-letter" "$$dest/txt" && \
47                 for FILE in $(manfiles); do \
48                         BASE=`basename $$FILE .1` && \
49                         groff -man -t -Tps -P-pa4 < "$(srcdir)/$$FILE" \
50                                 | ps2pdf - - \
51                                 > "$$dest/pdf-a4/$$BASE-a4.pdf" && \
52                         groff -man -t -Tps -P-pletter < "$(srcdir)/$$FILE" \
53                                 | ps2pdf - - \
54                                 > "$$dest/pdf-letter/$$BASE-letter.pdf" && \
55                         groff -man -t -Tascii < "$(srcdir)/$$FILE" \
56                                 | col -bx > "$$dest/txt/$$BASE.txt"; \
57                 done; \
58         fi
59
60 # This works with GNU tar and gives cleaner package than normal 'make dist'.
61 mydist:
62         TAR_OPTIONS='--owner=0 --group=0 --numeric-owner --mode=u+rw,go+r-w' \
63                 $(MAKE) dist-gzip