blob: 6376879eccf258e19a24214b26966d6477f4399b (
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
|
gsettings_SCHEMAS = \
org.yorba.shotwell.gschema.xml \
org.yorba.shotwell-extras.gschema.xml
appdata_in_files = $(srcdir)/shotwell.appdata.xml.in
appdata_XML = \
shotwell.appdata.xml
desktopdir = $(datadir)/applications
desktop_DATA = shotwell.desktop shotwell-viewer.desktop
$(appdata_XML) : $(appdata_in_files)
$(AM_V_GEN) $(MSGFMT) --xml --template $< -d $(top_srcdir)/po -o $@
%.desktop.in : %.desktop.in.in
$(AM_V_GEN) sed -e 's|@VERSION[@]|$(VERSION)|g' $< > $@
%.desktop : %.desktop.in
$(AM_V_GEN) $(MSGFMT) --desktop --template $< -d $(top_srcdir)/po -o $@
@GSETTINGS_RULES@
@APPDATA_XML_RULES@
CLEANFILES = $(appdata_XML) $(desktop_DATA) $(desktop_in_files)
dist_noinst_DATA = \
$(srcdir)/shotwell.desktop.in.in \
$(srcdir)/shotwell-viewer.desktop.in.in \
$(gsettings_SCHEMAS) \
$(appdata_in_files)
-include $(top_srcdir)/git.mk
|