aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.am
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2012-02-08 11:31:48 -0600
committerTed Gould <ted@gould.cx>2012-02-08 11:31:48 -0600
commit44cc6e756788f6ec37343c93c178227b2b6d3ba1 (patch)
treea0fceab985ea86b78bb9557a1f875bf0ee4758c4 /src/Makefile.am
parente548f851004dbb18360408c04c61a66a5ffc80fd (diff)
parent22965953b89a0ed229c9009a2750c573d82acfee (diff)
downloadayatana-indicator-application-44cc6e756788f6ec37343c93c178227b2b6d3ba1.tar.gz
ayatana-indicator-application-44cc6e756788f6ec37343c93c178227b2b6d3ba1.tar.bz2
ayatana-indicator-application-44cc6e756788f6ec37343c93c178227b2b6d3ba1.zip
* New upstream release.
* Adding in a code coverage based build target * Fixing useless variable setting * Fixing variant usage * Adding support for the Title property * Fixing to work with Dbusmenu 0.5.90
Diffstat (limited to 'src/Makefile.am')
-rw-r--r--src/Makefile.am8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 9b11fd1..e445d78 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -22,6 +22,7 @@ libapplication_la_SOURCES = \
dbus-shared.h \
indicator-application.c
libapplication_la_CFLAGS = $(INDICATOR_CFLAGS) \
+ $(COVERAGE_CFLAGS) \
-Wall \
-Wl,-Bsymbolic-functions \
-Wl,-z,defs \
@@ -29,7 +30,8 @@ libapplication_la_CFLAGS = $(INDICATOR_CFLAGS) \
-Werror \
-DG_LOG_DOMAIN=\"Indicator-Application\"
libapplication_la_LIBADD = $(INDICATOR_LIBS)
-libapplication_la_LDFLAGS = -module -avoid-version
+libapplication_la_LDFLAGS = $(COVERAGE_LDFLAGS) \
+ -module -avoid-version
##################################
# Service
@@ -57,6 +59,7 @@ indicator_application_service_SOURCES = \
indicator_application_service_CFLAGS = \
$(INDICATOR_CFLAGS) \
$(APPINDICATOR_CFLAGS) \
+ $(COVERAGE_CFLAGS) \
-DDATADIR="\"$(pkgdatadir)\"" \
-Wall -Werror \
-DG_LOG_DOMAIN=\"indicator-application-service\"
@@ -65,6 +68,9 @@ indicator_application_service_LDADD = \
$(INDICATOR_LIBS) \
$(APPINDICATOR_LIBS)
+indicator_application_service_LDFLAGS = \
+ $(COVERAGE_LDFLAGS)
+
glib_marshal_list = application-service-marshal.list
glib_marshal_prefix = _application_service_marshal