diff options
author | Ted Gould <ted@canonical.com> | 2009-01-16 00:04:05 -0600 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-01-16 00:04:05 -0600 |
commit | 2b6ce30681688304f321b1717cac0891882e773e (patch) | |
tree | 74f95250e94e33ed40bde5c636f6063fb0c11e80 /libindicate/tests/Makefile.am | |
parent | 8a2369b420ee625f07d3d6882c07464fc5b27cb8 (diff) | |
parent | df1713a31e272324244419c0b7b6fbf9b3179069 (diff) | |
download | libayatana-indicator-2b6ce30681688304f321b1717cac0891882e773e.tar.gz libayatana-indicator-2b6ce30681688304f321b1717cac0891882e773e.tar.bz2 libayatana-indicator-2b6ce30681688304f321b1717cac0891882e773e.zip |
Building the listener object that listens to all of the folks on DBus and turns that into a usable interface for indicator display folks. A lot of code to make things simple :)
Diffstat (limited to 'libindicate/tests/Makefile.am')
-rw-r--r-- | libindicate/tests/Makefile.am | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/libindicate/tests/Makefile.am b/libindicate/tests/Makefile.am index 814a50b..208da5b 100644 --- a/libindicate/tests/Makefile.am +++ b/libindicate/tests/Makefile.am @@ -1,7 +1,8 @@ noinst_PROGRAMS = \ indicate-and-crash \ - indicate-alot + indicate-alot \ + listen-and-print indicate_and_crash_SOURCES = \ indicate-and-crash.c @@ -24,3 +25,14 @@ indicate_alot_CFLAGS = \ indicate_alot_LDADD = \ ../libindicate.la \ $(LIBINDICATE_LIBS) + +listen_and_print_SOURCES = \ + listen-and-print.c + +listen_and_print_CFLAGS = \ + -I $(srcdir)/../.. \ + $(LIBINDICATE_CFLAGS) + +listen_and_print_LDADD = \ + ../libindicate.la \ + $(LIBINDICATE_LIBS) |