Doxygen: Refactor Doxyfile.in to doxygen/Doxyfile.
[xz.git] / Makefile.am
blob1756e5cb21baba02ce4f6d0778fd564b931fd5b3
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 ##
8 # Use -n to prevent gzip from adding a timestamp to the .gz headers.
9 GZIP_ENV = -9n
11 DIST_SUBDIRS = lib src po tests debug
12 SUBDIRS =
14 if COND_GNULIB
15 SUBDIRS += lib
16 endif
18 SUBDIRS += src po tests
20 if COND_DOC
21 dist_doc_DATA = \
22         AUTHORS \
23         COPYING \
24         COPYING.GPLv2 \
25         NEWS \
26         README \
27         THANKS \
28         TODO \
29         doc/faq.txt \
30         doc/history.txt \
31         doc/xz-file-format.txt \
32         doc/lzma-file-format.txt
34 examplesdir = $(docdir)/examples
35 dist_examples_DATA = \
36         doc/examples/00_README.txt \
37         doc/examples/01_compress_easy.c \
38         doc/examples/02_decompress.c \
39         doc/examples/03_compress_custom.c \
40         doc/examples/04_compress_easy_mt.c \
41         doc/examples/Makefile
43 examplesolddir = $(docdir)/examples_old
44 dist_examplesold_DATA = \
45         doc/examples_old/xz_pipe_comp.c \
46         doc/examples_old/xz_pipe_decomp.c
47 endif
49 EXTRA_DIST = \
50         po4a \
51         extra \
52         dos \
53         windows \
54         macosx \
55         cmake \
56         CMakeLists.txt \
57         autogen.sh \
58         COPYING.GPLv2 \
59         COPYING.GPLv3 \
60         COPYING.LGPLv2.1 \
61         INSTALL.generic \
62         PACKAGERS \
63         build-aux/manconv.sh \
64         build-aux/version.sh
66 ACLOCAL_AMFLAGS = -I m4
68 # List of man pages to convert to PDF and plain text in the dist-hook target.
69 manfiles = \
70         src/xz/xz.1 \
71         src/xzdec/xzdec.1 \
72         src/lzmainfo/lzmainfo.1 \
73         src/scripts/xzdiff.1 \
74         src/scripts/xzgrep.1 \
75         src/scripts/xzless.1 \
76         src/scripts/xzmore.1
78 # Create ChangeLog from output of "git log --date=iso --stat".
79 # Convert the man pages to PDF and plain text (ASCII only) formats.
80 dist-hook:
81         if test -d "$(srcdir)/.git" && type git > /dev/null 2>&1; then \
82                 ( cd "$(srcdir)" && git log --date=iso --stat \
83                         6060f7dc76fd6c2a8a1f8e85d0e4d86bb78273e6^..HEAD ) \
84                         > "$(distdir)/ChangeLog"; \
85         fi
86         if type groff > /dev/null 2>&1 && type ps2pdf > /dev/null 2>&1; then \
87                 dest="$(distdir)/doc/man" && \
88                 $(MKDIR_P) "$$dest/pdf-a4" "$$dest/pdf-letter" "$$dest/txt" && \
89                 for FILE in $(manfiles); do \
90                         BASE=`basename $$FILE .1` && \
91                         sh "$(srcdir)/build-aux/manconv.sh" pdf a4 \
92                                 < "$(srcdir)/$$FILE" \
93                                 > "$$dest/pdf-a4/$$BASE-a4.pdf" && \
94                         sh "$(srcdir)/build-aux/manconv.sh" pdf letter \
95                                 < "$(srcdir)/$$FILE" \
96                                 > "$$dest/pdf-letter/$$BASE-letter.pdf" && \
97                         sh "$(srcdir)/build-aux/manconv.sh" ascii \
98                                 < "$(srcdir)/$$FILE" \
99                                 > "$$dest/txt/$$BASE.txt"; \
100                 done; \
101         fi
103 # This works with GNU tar and gives cleaner package than normal 'make dist'.
104 # This also ensures that the man page translations are up to date (dist-hook
105 # would be too late for that).
106 mydist:
107         sh "$(srcdir)/src/liblzma/validate_map.sh"
108         cd "$(srcdir)/po4a" && sh update-po
109         VERSION=$(VERSION); \
110         if test -d "$(srcdir)/.git" && type git > /dev/null 2>&1; then \
111                 SNAPSHOT=`cd "$(srcdir)" && git describe --abbrev=4 | cut -b2-`; \
112                 test -n "$$SNAPSHOT" && VERSION=$$SNAPSHOT; \
113         fi; \
114         TAR_OPTIONS='--owner=0 --group=0 --numeric-owner --mode=u+rw,go+r-w' \
115                 $(MAKE) VERSION="$$VERSION" dist-gzip