summaryrefslogtreecommitdiff
path: root/ubuntu-online-accounts
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-07-18 10:11:39 +0200
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-07-24 16:20:03 +0200
commit70ea840bfec883f883b748e937e28f68d9f0870f (patch)
tree7eb556cceb2dab8ac057daa9e5c58227d353a7a9 /ubuntu-online-accounts
parentbc953560bc9db4818874cddd855c5d06241994df (diff)
downloadempathy-70ea840bfec883f883b748e937e28f68d9f0870f.tar.gz
Hook cc-plugins to the build system
https://bugzilla.gnome.org/show_bug.cgi?id=680448
Diffstat (limited to 'ubuntu-online-accounts')
-rw-r--r--ubuntu-online-accounts/Makefile.am2
-rw-r--r--ubuntu-online-accounts/cc-plugins/Makefile.am16
-rw-r--r--ubuntu-online-accounts/cc-plugins/providers/Makefile.am6
-rw-r--r--ubuntu-online-accounts/cc-plugins/services/Makefile.am6
4 files changed, 29 insertions, 1 deletions
diff --git a/ubuntu-online-accounts/Makefile.am b/ubuntu-online-accounts/Makefile.am
index 66c4ddbd4..60aaf57b5 100644
--- a/ubuntu-online-accounts/Makefile.am
+++ b/ubuntu-online-accounts/Makefile.am
@@ -1,4 +1,4 @@
-SUBDIRS = mc-plugin
+SUBDIRS = mc-plugin cc-plugins
appdir = $(ACCOUNTS_APPLICATION_FILES_DIR)
diff --git a/ubuntu-online-accounts/cc-plugins/Makefile.am b/ubuntu-online-accounts/cc-plugins/Makefile.am
new file mode 100644
index 000000000..192a378c1
--- /dev/null
+++ b/ubuntu-online-accounts/cc-plugins/Makefile.am
@@ -0,0 +1,16 @@
+SUBDIRS = providers services
+
+plugindir = $(ACCOUNTS_PROVIDER_PLUGIN_DIR)
+
+INCLUDES = \
+ -I$(top_builddir) \
+ -I$(top_srcdir) \
+ -DLOCALEDIR=\""$(datadir)/locale"\" \
+ $(UOA_CFLAGS) \
+ $(WARN_CFLAGS) \
+ $(ERROR_CFLAGS) \
+ $(DISABLE_DEPRECATED) \
+ $(EMPATHY_CFLAGS)
+
+plugin_LTLIBRARIES = \
+ $(NULL)
diff --git a/ubuntu-online-accounts/cc-plugins/providers/Makefile.am b/ubuntu-online-accounts/cc-plugins/providers/Makefile.am
new file mode 100644
index 000000000..d416593d4
--- /dev/null
+++ b/ubuntu-online-accounts/cc-plugins/providers/Makefile.am
@@ -0,0 +1,6 @@
+providersdir = $(ACCOUNTS_PROVIDER_FILES_DIR)
+
+providers_DATA = \
+ $(NULL)
+
+EXTRA_DIST = $(providers_DATA)
diff --git a/ubuntu-online-accounts/cc-plugins/services/Makefile.am b/ubuntu-online-accounts/cc-plugins/services/Makefile.am
new file mode 100644
index 000000000..6452131a1
--- /dev/null
+++ b/ubuntu-online-accounts/cc-plugins/services/Makefile.am
@@ -0,0 +1,6 @@
+servicesdir = $(ACCOUNTS_SERVICE_FILES_DIR)
+
+services_DATA = \
+ $(NULL)
+
+EXTRA_DIST = $(services_DATA)