diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-07-18 10:11:39 +0200 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-07-24 16:20:03 +0200 |
commit | 70ea840bfec883f883b748e937e28f68d9f0870f (patch) | |
tree | 7eb556cceb2dab8ac057daa9e5c58227d353a7a9 /ubuntu-online-accounts | |
parent | bc953560bc9db4818874cddd855c5d06241994df (diff) |
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.am | 2 | ||||
-rw-r--r-- | ubuntu-online-accounts/cc-plugins/Makefile.am | 16 | ||||
-rw-r--r-- | ubuntu-online-accounts/cc-plugins/providers/Makefile.am | 6 | ||||
-rw-r--r-- | ubuntu-online-accounts/cc-plugins/services/Makefile.am | 6 |
4 files changed, 29 insertions, 1 deletions
diff --git a/ubuntu-online-accounts/Makefile.am b/ubuntu-online-accounts/Makefile.am index 66c4ddbd..60aaf57b 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 00000000..192a378c --- /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 00000000..d416593d --- /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 00000000..6452131a --- /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) |