-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
102 lines (82 loc) · 2.43 KB
/
Makefile.am
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
ACLOCAL_AMFLAGS = -I m4
AM_DISTCHECK_CONFIGURE_FLAGS = --enable-gcc-wall --enable-gcc-werror --enable-as-needed \
--enable-dbus --enable-qt5
include %D%/data/tmpfiles.d/Makefile.am
include %D%/data/udev/Makefile.am
include %D%/data/pbm/Makefile.am
include %D%/src/include/Makefile.am
include %D%/src/lib/utils/Makefile.am
include %D%/src/lib/shared/Makefile.am
if WITH_DBUS
include %D%/data/autostart/Makefile.am
include %D%/data/dbus/Makefile.am
include %D%/src/lib/dbus/Makefile.am
include %D%/src/bin/launcher/Makefile.am
include %D%/src/bin/service/Makefile.am
if WITH_DESKTOP_NOTIFICATIONS
include %D%/data/icons/Makefile.am
endif
if WITH_QT5
include %D%/src/bin/gui/Qt/Makefile.am
include %D%/data/applications/Makefile.am
include %D%/data/gui/Makefile.am
if !WITH_DESKTOP_NOTIFICATIONS
include %D%/data/icons/Makefile.am
endif
endif
endif
include %D%/src/bin/daemon/Makefile.am
EXTRA_DIST += \
%D%/data/tmpfiles.d/GLogiK.conf \
%D%/data/sysusers.d/GLogiK.conf \
%D%/meson.build \
%D%/meson.options \
%D%/version.sh \
%D%/src/lib/utils/meson.build \
%D%/src/lib/shared/meson.build \
%D%/src/lib/dbus/meson.build \
%D%/src/bin/launcher/meson.build \
%D%/src/bin/service/meson.build \
%D%/src/bin/gui/Qt/meson.build \
%D%/src/bin/daemon/meson.build \
%D%/data/applications/meson.build \
%D%/data/udev/meson.build \
%D%/data/dbus/meson.build \
%D%/data/gui/meson.build \
%D%/data/init/meson.build \
%D%/data/autostart/meson.build \
%D%/data/pbm/meson.build \
%D%/data/icons/meson.build
maintainer-clean-local: maintainer-clean-libtool-files maintainer-clean-autotools-files
.PHONY: maintainer-clean-libtool-files maintainer-clean-autotools-files
LOCAL_LIBTOOL_FILES = \
$(top_srcdir)/m4/libtool.m4 \
$(top_srcdir)/m4/ltoptions.m4 \
$(top_srcdir)/m4/ltsugar.m4 \
$(top_srcdir)/m4/ltversion.m4 \
$(top_srcdir)/m4/lt~obsolete.m4
LOCAL_AUTOTOOLS_FILES = \
$(top_srcdir)/aclocal.m4 \
$(top_srcdir)/config.h.in \
$(top_srcdir)/depcomp \
$(top_srcdir)/install-sh \
$(top_srcdir)/missing \
$(top_srcdir)/configure \
$(top_srcdir)/configure~ \
$(top_srcdir)/config.h.in~ \
$(top_srcdir)/config.guess \
$(top_srcdir)/config.sub \
$(top_srcdir)/compile \
$(top_srcdir)/ltmain.sh
maintainer-clean-libtool-files:
-rm -f $(LOCAL_LIBTOOL_FILES)
maintainer-clean-autotools-files:
-rm -f $(LOCAL_AUTOTOOLS_FILES)
docs_dir = $(docdir)
docs__DATA = \
%D%/AUTHORS \
%D%/ChangeLog \
%D%/COPYING \
%D%/NEWS \
%D%/README \
%D%/VERSION