summaryrefslogtreecommitdiff
path: root/examples/Makefile.am
diff options
context:
space:
mode:
authorTony Garnock-Jones <tonyg@lshift.net>2009-05-18 15:24:55 +0100
committerTony Garnock-Jones <tonyg@lshift.net>2009-05-18 15:24:55 +0100
commit95541b1b764510db98df07656ce0d3bda5917754 (patch)
tree1f413886ebafdce3ef42ad85d718e4271552b5c4 /examples/Makefile.am
parentaabfa202da960cb782cf7c0b90a54cee5969e1fb (diff)
downloadrabbitmq-c-github-ask-95541b1b764510db98df07656ce0d3bda5917754.tar.gz
Add bind/unbind utilities, and API for unbind
Diffstat (limited to 'examples/Makefile.am')
-rw-r--r--examples/Makefile.am5
1 files changed, 4 insertions, 1 deletions
diff --git a/examples/Makefile.am b/examples/Makefile.am
index dbb7953..39c8fab 100644
--- a/examples/Makefile.am
+++ b/examples/Makefile.am
@@ -1,4 +1,5 @@
-bin_PROGRAMS = amqp_sendstring amqp_exchange_declare amqp_listen amqp_producer amqp_consumer
+bin_PROGRAMS = amqp_sendstring amqp_exchange_declare amqp_listen amqp_producer amqp_consumer \
+ amqp_unbind amqp_bind
AM_CFLAGS = -I../librabbitmq
AM_LDFLAGS = ../librabbitmq/librabbitmq.la
@@ -10,3 +11,5 @@ amqp_exchange_declare_SOURCES = amqp_exchange_declare.c example_utils.c
amqp_listen_SOURCES = amqp_listen.c example_utils.c
amqp_producer_SOURCES = amqp_producer.c example_utils.c
amqp_consumer_SOURCES = amqp_consumer.c example_utils.c
+amqp_unbind_SOURCES = amqp_unbind.c example_utils.c
+amqp_bind_SOURCES = amqp_bind.c example_utils.c