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
|
NULL=
xml_in_files = nemo.xml.in
xml_files = $(xml_in_files:.xml.in=.xml)
@INTLTOOL_XML_RULE@
desktopdir = $(datadir)/applications
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
desktop_in_files = \
nemo.desktop.in \
nemo-autorun-software.desktop.in
autostartdir = $(datadir)/applications
autostart_in_files = nemo-autostart.desktop.in
autostart_DATA = $(autostart_in_files:.desktop.in=.desktop)
@INTLTOOL_DESKTOP_RULE@
mimedir = $(datadir)/mime/packages
mime_DATA = $(xml_files)
servicedir = $(datadir)/dbus-1/services
service_DATA = $(service_in_files:.service.in=.service)
service_in_files = \
org.nemo.freedesktop.FileManager1.service.in \
org.Nemo.service.in
org.Nemo.service: org.Nemo.service.in Makefile
$(AM_V_GEN) sed -e "s|\@bindir\@|$(bindir)|" $< > $@
org.nemo.freedesktop.FileManager1.service: org.nemo.freedesktop.FileManager1.service.in Makefile
$(AM_V_GEN) sed -e "s|\@bindir\@|$(bindir)|" $< > $@
nemodatadir = $(datadir)/nemo
nemodata_DATA = \
nemo-extras.placeholder \
nemo-suggested.placeholder \
$(NULL)
EXTRA_DIST = $(nemodata_DATA) \
nemo.desktop \
nemo.desktop.in \
dbus-interfaces.xml \
freedesktop-dbus-interfaces.xml \
$(xml_in_files) \
$(desktop_in_files) \
$(service_in_files) \
$(autostart_in_files) \
$(NULL)
CLEANFILES = $(xml_files) \
$(desktop_DATA) \
$(service_DATA) \
$(autostart_DATA) \
$(NULL)
SUBDIRS = \
icons \
$(NULL)
install-data-hook:
if ENABLE_UPDATE_MIMEDB
$(UPDATE_MIME_DATABASE) "$(DESTDIR)$(datadir)/mime"
endif
uninstall-hook:
if ENABLE_UPDATE_MIMEDB
$(UPDATE_MIME_DATABASE) "$(DESTDIR)$(datadir)/mime"
endif
|