diff options
author | Perberos <[email protected]> | 2011-11-14 18:24:48 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2011-11-14 18:24:48 -0300 |
commit | 312ba610a1e98fc656fb58178227d7d45a64494e (patch) | |
tree | 54a3c2b6084c80e63fb0526c6e7b8e01627acbd7 /invest-applet/data/Makefile.am | |
download | mate-applets-312ba610a1e98fc656fb58178227d7d45a64494e.tar.bz2 mate-applets-312ba610a1e98fc656fb58178227d7d45a64494e.tar.xz |
initial
Diffstat (limited to 'invest-applet/data/Makefile.am')
-rw-r--r-- | invest-applet/data/Makefile.am | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/invest-applet/data/Makefile.am b/invest-applet/data/Makefile.am new file mode 100644 index 00000000..e304109a --- /dev/null +++ b/invest-applet/data/Makefile.am @@ -0,0 +1,58 @@ +SUBDIRS = art + +# ****************************************************************************** +# Panel applet matecomponent stuff +# ****************************************************************************** +serverdir = $(libdir)/matecomponent/servers +server_in_files = Invest_Applet.server.in +server_DATA = \ + $(server_in_files:.server.in=.server) \ + MATE_GtikApplet.server + +# ****************************************************************************** +# MateConf Schemas +# ****************************************************************************** +# MateConf Preference Schemas +#schemadir = $(MATECONF_SCHEMA_FILE_DIR) +#schema_in_files = deskbar-applet.schemas.in +#schema_DATA = $(schema_in_files:.schemas.in=.schemas) + +# ****************************************************************************** +# Misc data +# ****************************************************************************** +uidir = $(datadir)/mate-2.0/ui +ui_DATA = \ + Invest_Applet.xml +builder_DATA = \ + prefs-dialog.ui \ + financialchart.ui + +investbindir = $(libdir)/invest-applet + +# ****************************************************************************** +# Build rules +# ****************************************************************************** +@INTLTOOL_SERVER_RULE@ +@INTLTOOL_SCHEMAS_RULE@ + +$(server_in_files): $(server_in_files:.server.in=.server.in.in) + sed -e "s|\@LIBEXECDIR\@|$(libexecdir)|" $< > $@ + +#if MATECONF_SCHEMAS_INSTALL +#install-data-local: install-schemas +#install-schemas: +# MATECONF_CONFIG_SOURCE=$(MATECONF_SCHEMA_CONFIG_SOURCE) \ +# $(MATECONFTOOL) --makefile-install-rule $(schema_DATA) +#endif + +DISTCLEANFILES = \ + $(server_in_files) \ + $(server_in_files:.server.in=.server) + +EXTRA_DIST = \ + Invest_Applet.server.in.in \ + MATE_GtikApplet.server \ + $(ui_DATA) \ + $(builder_DATA) + +-include $(top_srcdir)/git.mk |