diff options
author | Tony Garnock-Jones <tonyg@kcbbs.gen.nz> | 2009-04-27 00:44:59 +0100 |
---|---|---|
committer | Tony Garnock-Jones <tonyg@kcbbs.gen.nz> | 2009-04-27 00:44:59 +0100 |
commit | 3a51512706eb5dcebb6c8e2d4dcd571273f49899 (patch) | |
tree | 7cd5af04f901aba44f1ce43bccb6685b97ef33f6 /examples/Makefile.am | |
parent | e954a0bf0d30c21b5563db2fd07e5d85d076edc2 (diff) | |
download | rabbitmq-c-github-ask-3a51512706eb5dcebb6c8e2d4dcd571273f49899.tar.gz |
More examples; clean shutdown
Diffstat (limited to 'examples/Makefile.am')
-rw-r--r-- | examples/Makefile.am | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/examples/Makefile.am b/examples/Makefile.am index 226294f..45f0308 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -1,4 +1,10 @@ -bin_PROGRAMS = amqp_sendstring +bin_PROGRAMS = amqp_sendstring amqp_exchange_declare amqp_listen AM_CFLAGS = -I../librabbitmq AM_LDFLAGS = ../librabbitmq/librabbitmq.la + +nodist_INCLUDES = example_utils.h + +amqp_sendstring_SOURCES = amqp_sendstring.c example_utils.c +amqp_exchange_declare_SOURCES = amqp_exchange_declare.c example_utils.c +amqp_listen_SOURCES = amqp_listen.c example_utils.c |