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
|
ACLOCAL_AMFLAGS = -I m4
AUTOMAKE_OPTIONS = 1.8 dist-bzip2
SUBDIRS = icons \
po \
sounds \
src \
plugin
desktopdir = $(datadir)/applications
desktop_in_files = org.xfce.orage.desktop.in
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
@INTLTOOL_DESKTOP_RULE@
appdatadir = $(datadir)/metainfo
appdata_in_files = org.xfce.orage.appdata.xml.in
appdata_DATA = $(appdata_in_files:.xml.in=.xml)
@INTLTOOL_XML_RULE@
servicedir = $(datadir)/dbus-1/services
service_in_files = org.xfce.orage.service.in
service_DATA = $(service_in_files:.service.in=.service)
%.service: %.service.in
$(AM_V_GEN) $(SED) -e "s,\@bindir\@,$(bindir),g" < $< > $@
EXTRA_DIST = \
intltool-extract.in \
intltool-merge.in \
intltool-update.in \
$(desktop_in_files) \
$(appdata_in_files) \
$(service_in_files)
DISTCLEANFILES = \
intltool-extract \
intltool-merge \
intltool-update \
po/.intltool-merge-cache.lock \
$(desktop_DATA) \
$(appdata_DATA) \
$(service_DATA)
distclean-local:
rm -rf *.cache *~
# vi:set ts=8 sw=8 noet ai nocindent:
|