summaryrefslogtreecommitdiff
path: root/invest-applet/Makefile.am
diff options
context:
space:
mode:
Diffstat (limited to 'invest-applet/Makefile.am')
-rw-r--r--invest-applet/Makefile.am45
1 files changed, 45 insertions, 0 deletions
diff --git a/invest-applet/Makefile.am b/invest-applet/Makefile.am
new file mode 100644
index 00000000..f40873e1
--- /dev/null
+++ b/invest-applet/Makefile.am
@@ -0,0 +1,45 @@
+SUBDIRS = invest data docs
+
+# ******************************************************************************
+# Panel applet configuration processing
+# ******************************************************************************
+appletdir = $(datadir)/mate-panel/applets
+applet_in_files = data/org.mate.applets.InvestApplet.mate-panel-applet.in
+applet_DATA = data/org.mate.applets.InvestApplet.mate-panel-applet
+
+if ENABLE_IN_PROCESS
+APPLET_LOCATION = $(pkglibdir)/libinvest-applet.so
+else !ENABLE_IN_PROCESS
+APPLET_LOCATION = $(libexecdir)/invest-applet
+endif !ENABLE_IN_PROCESS
+
+$(applet_in_files): data/org.mate.applets.InvestApplet.mate-panel-applet.in.in Makefile
+ $(AM_V_GEN)sed \
+ -e "s|\@APPLET_LOCATION\@|$(APPLET_LOCATION)|" \
+ -e "s|\@APPLET_IN_PROCESS\@|$(APPLET_IN_PROCESS)|" \
+ -e "s|\@VERSION\@|$(PACKAGE_VERSION)|" \
+ $< > $@
+
+$(applet_DATA): $(applet_in_files) Makefile
+ $(AM_V_GEN) $(MSGFMT) --desktop --keyword=Name --keyword=Description --template $< -d $(top_srcdir)/po -o $@
+
+# ******************************************************************************
+# D-Bus service processing (for out-of-process build)
+# ******************************************************************************
+if !ENABLE_IN_PROCESS
+servicedir = $(datadir)/dbus-1/services
+service_in_files = data/org.mate.panel.applet.InvestAppletFactory.service.in
+service_DATA = $(service_in_files:.service.in=.service)
+
+$(service_DATA): $(service_in_files) Makefile
+ $(AM_V_GEN)sed \
+ -e "s|\@APPLET_LOCATION\@|$(APPLET_LOCATION)|" \
+ $< > $@
+endif !ENABLE_IN_PROCESS
+
+CLEANFILES = \
+ $(applet_DATA) \
+ $(applet_in_files) \
+ $(service_DATA)
+
+-include $(top_srcdir)/git.mk