diff options
| author | Alan Conway <aconway@apache.org> | 2007-06-12 19:37:17 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2007-06-12 19:37:17 +0000 |
| commit | 7e655af0a452d58ec40ab120d5b6907262fc8bda (patch) | |
| tree | 6bd54cd2a55465f3090a2ce97c2bcf314add53cc /qpid/cpp/examples/Makefile.am | |
| parent | 587e9ba14aa216578fa015665dc6472e475d5075 (diff) | |
| download | qpid-python-7e655af0a452d58ec40ab120d5b6907262fc8bda.tar.gz | |
Initial examples directory with jrobies example programs and Makefile.am.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@546612 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/examples/Makefile.am')
| -rw-r--r-- | qpid/cpp/examples/Makefile.am | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/qpid/cpp/examples/Makefile.am b/qpid/cpp/examples/Makefile.am new file mode 100644 index 0000000000..955411ab98 --- /dev/null +++ b/qpid/cpp/examples/Makefile.am @@ -0,0 +1,14 @@ +noinst_PROGRAMS=create_queue topic_listener topic_publisher +INCLUDES=-I$(top_srcdir)/src -I$(top_srcdir)/src/gen -I$(top_builddir)src/gen +lib_client = $(top_builddir)/src/libqpidclient.la + + +create_queue_LDADD=$(lib_client) +create_queue_SOURCES=create_queue.cpp + +topic_listener_LDADD=$(lib_client) +topic_listener_SOURCES=topic_listener.cpp + +topic_publisher_LDADD=$(lib_client) +topic_publisher_SOURCES=topic_publisher.cpp + |
