blob: 08e8d0cfd09cd33e62bcb0b48a878d010d7cf481 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
SUBDIRS = \
cut-n-paste \
data \
libdocument \
backend \
libview \
libmisc \
properties \
shell \
help
if USE_NLS
SUBDIRS += po
endif
if ENABLE_TESTS
SUBDIRS += test
endif
if ENABLE_THUMBNAILER
SUBDIRS += thumbnailer
endif
if ENABLE_PREVIEWER
SUBDIRS += previewer
endif
NULL =
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = \
atril-document-$(EV_API_VERSION).pc \
atril-view-$(EV_API_VERSION).pc \
$(NULL)
headerdir = $(includedir)/atril/$(EV_API_VERSION)
header_DATA = \
atril-document.h \
atril-view.h \
$(NULL)
# Applications
EXTRA_DIST = \
$(header_DATA) \
autogen.sh \
README.md \
meson.build \
meson_options.txt \
backend/meson.build \
backend/comics/meson.build \
backend/djvu/meson.build \
backend/dvi/meson.build \
backend/dvi/mdvi-lib/meson.build \
backend/epub/meson.build \
backend/epub/minizip/meson.build \
backend/pdf/meson.build \
backend/pixbuf/meson.build \
backend/ps/meson.build \
backend/tiff/meson.build \
backend/xps/meson.build \
cut-n-paste/toolbar-editor/meson.build \
cut-n-paste/zoom-control/meson.build \
data/meson.build \
data/icons/meson.build \
help/meson.build \
help/reference/libdocument/meson.build \
help/reference/libview/meson.build \
help/reference/shell/meson.build \
install-scripts/meson.build \
install-scripts/meson_install_schemas.py \
install-scripts/meson_update_icon_cache.py \
install-scripts/meson_update_mime_database.py \
libdocument/meson.build \
libmisc/meson.build \
libview/meson.build \
po/meson.build \
previewer/meson.build \
properties/meson.build \
shell/meson.build \
test/meson.build \
thumbnailer/meson.build \
subprojects/mate-submodules.wrap
DISTCLEANFILES =
MAINTAINERCLEANFILES = \
ChangeLog \
$(srcdir)/INSTALL \
$(srcdir)/aclocal.m4 \
$(srcdir)/autoscan.log \
$(srcdir)/compile \
$(srcdir)/config.guess \
$(srcdir)/config.h.in \
$(srcdir)/config.sub \
$(srcdir)/configure \
$(srcdir)/configure.scan \
$(srcdir)/depcomp \
$(srcdir)/install-sh \
$(srcdir)/ltmain.sh \
$(srcdir)/missing \
$(srcdir)/mkinstalldirs \
$(srcdir)/omf.make \
$(srcdir)/xmldocs.make \
$(srcdir)/gtk-doc.make \
$(srcdir)/po/Makefile.in.in \
`find "$(srcdir)" -type f -name Makefile.in -print`
DISTCHECK_CONFIGURE_FLAGS = \
--disable-schemas-compile \
--enable-gtk-doc \
--disable-caja \
--disable-tests \
--disable-silent-rules \
--enable-compile-warnings=no \
CFLAGS='-Wno-deprecated-declarations'
distuninstallcheck_listfiles = find . -type f -print | grep -v /share/mate/help/ | grep -v \.omf
# Build ChangeLog from GIT history
ChangeLog:
$(AM_V_GEN) if test -d $(top_srcdir)/.git; then \
GIT_DIR="$(top_srcdir)/.git" git log --stat > $@; \
fi
dist: ChangeLog
.PHONY: ChangeLog
-include $(top_srcdir)/git.mk
|