diff options
author | Tony Garnock-Jones <tonyg@lshift.net> | 2009-07-14 13:40:33 +0100 |
---|---|---|
committer | Tony Garnock-Jones <tonyg@lshift.net> | 2009-07-14 13:40:33 +0100 |
commit | 3cf69f1362e3824ec44772971cfe6d04129dc80e (patch) | |
tree | 25c2ca772a70eb97497f65fad84052483cd2044e /examples/Makefile.am | |
parent | 7fec8ff4815c896997f0a476b282c7bac3ede7ad (diff) | |
download | rabbitmq-c-github-ask-3cf69f1362e3824ec44772971cfe6d04129dc80e.tar.gz |
Make "make distcheck" work and pass
Diffstat (limited to 'examples/Makefile.am')
-rw-r--r-- | examples/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/Makefile.am b/examples/Makefile.am index 39c8fab..6ac915a 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -1,10 +1,10 @@ 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 +AM_CFLAGS = -I$(top_srcdir)/librabbitmq +AM_LDFLAGS = $(top_builddir)/librabbitmq/librabbitmq.la -nodist_INCLUDES = example_utils.h +noinst_HEADERS = example_utils.h amqp_sendstring_SOURCES = amqp_sendstring.c example_utils.c amqp_exchange_declare_SOURCES = amqp_exchange_declare.c example_utils.c |