summaryrefslogtreecommitdiff
path: root/qpid/cpp/examples/Makefile.am
blob: e5fc509eace2e4039122a799102e3c6a9752f481 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53

# List all example files here
nobase_pkgdata_DATA=						\
	examples/Makefile					\
	examples/request-response/client.cpp			\
	examples/request-response/server.cpp			\
	examples/request-response/Makefile			\
	examples/fanout/Makefile				\
	examples/fanout/declare_queues.cpp			\
	examples/fanout/listener.cpp				\
	examples/fanout/fanout_producer.cpp			\
	examples/pub-sub/Makefile				\
	examples/pub-sub/topic_publisher.cpp			\
	examples/pub-sub/topic_listener.cpp			\
	examples/direct/Makefile				\
	examples/direct/direct_producer.cpp			\
	examples/direct/listener.cpp				\
	examples/direct/declare_queues.cpp

EXTRA_DIST=$(nobase_pkgdata_DATA) verify \
	examples/request-response/verify.in \
	examples/fanout/verify.in \
	examples/pub-sub/verify.in \
	examples/direct/verify.in 

# Note: we don't use normal automake SUBDIRS because the example
# makefiles don't understand all the recursive automake targets.

clean-local:
	cd examples; $(MAKE) clean
	rm -f examples/*/*.out  examples/*/*.wait 

abs_top_builddir=@abs_top_builddir@
abs_top_srcdir=@abs_top_srcdir@

VERIFY=$(abs_top_srcdir)/examples/verify

# Build the examples in the source tree.
all-local:
	cd examples && $(MAKE) CXX="$(CXX)" CXXFLAGS="$(CXXFLAGS) -I../../$(top_srcdir)/src -I../../$(top_srcdir)/src/gen -I../../$(top_builddir)/src/gen -L../../$(top_builddir)/src/.libs -Wl,-rpath,$(abs_top_builddir)/src/.libs" all

# Verify the examples in the buid tree.
check-local: all-local
	cd examples && QPIDD=$(abs_top_builddir)/src/qpidd $(VERIFY)

# Build and verify the installed examples, then clean up to avoid rpmbuild warnings.
EXAMPLE_FLAGS=-I$(DESTDIR)$(includedir) -L$(DESTDIR)$(libdir) -Wl,-rpath,$(DESTDIR)$(libdir)
EXAMPLE_DIR=$(DESTDIR)$(pkgdatadir)/examples 
installcheck-local:
	cd $(EXAMPLE_DIR) && $(MAKE) CXX="$(CXX)" CXXFLAGS="$(EXAMPLE_FLAGS)" all
	cd $(EXAMPLE_DIR) && QPIDD=$(sbindir)/qpidd $(VERIFY)
	cd $(EXAMPLE_DIR) && $(MAKE) clean