diff options
author | Ted Gould <ted@canonical.com> | 2009-04-27 10:42:39 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-04-27 10:42:39 -0500 |
commit | d2d0c7aac15b44ca5bc876be3a402e63284512b6 (patch) | |
tree | 06294e6bfe4a1e4c2f69653302599aea70e83e3f /examples/Makefile.am | |
parent | c292100a3d95aac71c7cb943cbd3df9a204c0a70 (diff) | |
parent | 5899a3f246b8eeac2c820013a27cde0301ad69ee (diff) | |
download | libayatana-indicator-d2d0c7aac15b44ca5bc876be3a402e63284512b6.tar.gz libayatana-indicator-d2d0c7aac15b44ca5bc876be3a402e63284512b6.tar.bz2 libayatana-indicator-d2d0c7aac15b44ca5bc876be3a402e63284512b6.zip |
Merging in the testing branch to get some tests for this guy
Diffstat (limited to 'examples/Makefile.am')
-rw-r--r-- | examples/Makefile.am | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/examples/Makefile.am b/examples/Makefile.am new file mode 100644 index 0000000..862046e --- /dev/null +++ b/examples/Makefile.am @@ -0,0 +1,72 @@ + +libexec_PROGRAMS = \ + indicate-and-crash \ + indicate-alot \ + listen-and-print \ + im-client \ + show-hide-server + +indicate_and_crash_SOURCES = \ + indicate-and-crash.c + +indicate_and_crash_CFLAGS = \ + -I $(srcdir)/.. \ + $(LIBINDICATE_CFLAGS) + +indicate_and_crash_LDADD = \ + ../libindicate/libindicate.la \ + $(LIBINDICATE_LIBS) + +indicate_alot_SOURCES = \ + indicate-alot.c + +indicate_alot_CFLAGS = \ + -I $(srcdir)/.. \ + $(LIBINDICATE_CFLAGS) + +indicate_alot_LDADD = \ + ../libindicate/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/libindicate.la \ + $(LIBINDICATE_LIBS) + +im_client_SOURCES = \ + im-client.c + +im_client_CFLAGS = \ + -I $(srcdir)/.. \ + $(LIBINDICATE_CFLAGS) + +im_client_LDADD = \ + ../libindicate/libindicate.la \ + $(LIBINDICATE_LIBS) + +show_hide_server_SOURCES = \ + show-hide-server.c + +show_hide_server_CFLAGS = \ + -I $(srcdir)/.. \ + $(LIBINDICATE_CFLAGS) + +show_hide_server_LDADD = \ + ../libindicate/libindicate.la \ + $(LIBINDICATE_LIBS) + +examplesdir = $(docdir)/examples/ + +examples_DATA = \ + $(indicate_and_crash_SOURCES) \ + $(indicate_alot_SOURCES) \ + $(listen_and_print_SOURCES) \ + $(im_client_SOURCES) + +EXTRA_DIST = $(examples_DATA) |