diff options
author | Conor Curran <conor.curran@canonical.com> | 2012-01-13 13:43:00 +0000 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2012-01-13 13:43:00 +0000 |
commit | 9be5ce8beb52b3e4b1fa820dfaca5dea8f2db80e (patch) | |
tree | 0c1d23fa58f5463b7afddf46dceccb4df1bd801b /src | |
parent | e090ca7ce8c5d46962e9085ed96c55baa23cae65 (diff) | |
parent | 94f68e08df92dd859889d08706fe1f024f4962e8 (diff) | |
download | ayatana-indicator-sound-9be5ce8beb52b3e4b1fa820dfaca5dea8f2db80e.tar.gz ayatana-indicator-sound-9be5ce8beb52b3e4b1fa820dfaca5dea8f2db80e.tar.bz2 ayatana-indicator-sound-9be5ce8beb52b3e4b1fa820dfaca5dea8f2db80e.zip |
add Allans initial tdd work
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index e79f64e..36fe490 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -28,9 +28,14 @@ libsoundmenu_la_SOURCES = \ gen-sound-service.xml.c \ dbus-shared-names.h -libsoundmenu_la_CFLAGS = $(APPLET_CFLAGS) -Wall -Werror -DG_LOG_DOMAIN=\"Indicator-Sound\" +libsoundmenu_la_CFLAGS = \ + $(APPLET_CFLAGS) \ + $(COVERAGE_CFLAGS) \ + -Wall -Werror -DG_LOG_DOMAIN=\"Indicator-Sound\" libsoundmenu_la_LIBADD = $(APPLET_LIBS) -lm -libsoundmenu_la_LDFLAGS = -module -avoid-version +libsoundmenu_la_LDFLAGS = + $(COVERAGE_LDFLAGS) \ + -module -avoid-version checkxml: $(srcdir)/sound-service.xml @@ -115,8 +120,13 @@ indicator_sound_service_SOURCES = \ sound-service-marshal.h \ $(music_bridge_VALASOURCES:.vala=.c) -indicator_sound_service_CFLAGS = $(PULSEAUDIO_CFLAGS) $(SOUNDSERVICE_CFLAGS) $(GCONF_CFLAGS) -DLIBEXECDIR=\"$(libexecdir)\" -Wall +indicator_sound_service_CFLAGS = $(PULSEAUDIO_CFLAGS) \ + $(SOUNDSERVICE_CFLAGS) \ + $(GCONF_CFLAGS) \ + $(COVERAGE_CFLAGS) \ + -DLIBEXECDIR=\"$(libexecdir)\" -Wall indicator_sound_service_LDADD = $(PULSEAUDIO_LIBS) $(SOUNDSERVICE_LIBS) $(GCONF_LIBS) +indicator_sound_service_LDFLAGS = $(COVERAGE_LDFLAGS) ######################### # Service xml compilation |