blob: f5654790e61c57dffe43ae5ce2bcdcddde61d674 (
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
|
SUBDIRS = direct fanout pub-sub request-response failover
if HAVE_XML
SUBDIRS += xml-exchange
broker_args = "--no-module-dir --data-dir \"\" --auth no --load-module $(top_builddir)/src/.libs/xml.so"
endif
if !HAVE_XML
exclude_examples_regexp="xml" # Exclude XML examples.
broker_args = "--no-module-dir --data-dir \"\" --auth no"
endif
MAKEDIST=.libs/Makefile
SUBMAKE=' for d in $(SUBDIRS) ; do $$(MAKE) -C $$$$d $$@ ; done'
$(MAKEDIST): Makefile
mkdir -p .libs
@$(ECHO) all: > $(MAKEDIST)
@$(ECHO) $(SUBMAKE) >> $(MAKEDIST)
@$(ECHO) clean: >> $(MAKEDIST)
@$(ECHO) $(SUBMAKE) >> $(MAKEDIST)
examplesdir=$(pkgdatadir)/examples
examples_DATA = README $(MAKEDIST)
EXTRA_DIST = $(examples_DATA) README.verify verify verify_all
# For older versions of automake
abs_top_srcdir = @abs_top_srcdir@
# Verify the examples in the buid tree.
check-local:
$(srcdir)/verify_all $(abs_top_srcdir)/.. $(top_builddir)/src/qpidd $(broker_args) $(exclude_examples_regexp)
|