blob: d6696b5392c9b00482b6e646c0b8e8a407546f24 (
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
|
NULL =
%.desktop: %.desktop.in Makefile
$(AM_V_GEN) sed -e 's|@LIBEXECDIR[@]|$(libexecdir)|g' $< >$@
desktopdir = $(pkgdatadir)/greeter/autostart
desktop_in_files = \
caribou-autostart.desktop.in \
$(NULL)
desktop_DATA = orca-autostart.desktop \
$(desktop_in_files:.desktop.in=.desktop) \
$(NULL)
EXTRA_DIST = \
$(desktop_in_files) \
$(desktop_DATA) \
$(NULL)
DISTCLEANFILES = \
$(desktop_in_files:.desktop.in=.desktop) \
$(NULL)
MAINTAINERCLEANFILES = \
*~ \
Makefile.in
|