blob: fdcfcfca01eeff8e0f28775e52359713e6d60c31 (
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
|
NULL =
SUBDIRS = \
icons \
sounds \
$(NULL)
@INTLTOOL_DESKTOP_RULE@
if ENABLE_STATUSICON
autostartdir = $(sysconfdir)/xdg/autostart
endif
autostart_in_files = mate-volume-control-status-icon.desktop.in
if ENABLE_STATUSICON
autostart_DATA = $(autostart_in_files:.desktop.in=.desktop)
endif
appsdir = $(datadir)/applications
apps_in_files = mate-volume-control.desktop.in
apps_DATA = $(apps_in_files:.desktop.in=.desktop)
EXTRA_DIST = \
$(autostart_in_files) \
mate-volume-control.desktop.in.in \
$(NULL)
CLEANFILES = \
mate-volume-control.desktop \
$(NULL)
DISTCLEANFILES = \
mate-volume-control-status-icon.desktop \
$(NULL)
-include $(top_srcdir)/git.mk
|