doc/examples: wfcq needs to link against urcu-common
[urcu.git] / doc / examples / Makefile.am
CommitLineData
8bad63a0
MD
1doc_examplesdir = ${docdir}/examples
2
3doc_examples_qsbr_minimaldir = ${doc_examplesdir}/qsbr-minimal
4
c50fdd7c 5dist_doc_examples_qsbr_minimal_DATA = \
8bad63a0
MD
6 qsbr-minimal/Makefile \
7 qsbr-minimal/qsbr-minimal.c
8
f37f1d93
MD
9dist_doc_examples_DATA = \
10 Makefile.examples.template
11
12doc_examples_listdir = ${doc_examplesdir}/list
13
14dist_doc_examples_list_DATA = \
15 list/Makefile \
16 list/Makefile.cds_list_add_rcu \
05796604 17 list/Makefile.cds_list_add_tail_rcu \
06ced8d6 18 list/Makefile.cds_list_del_rcu \
17fb3188 19 list/Makefile.cds_list_for_each_rcu \
d427bff9 20 list/Makefile.cds_list_for_each_entry_rcu \
7eba9f88 21 list/Makefile.cds_list_replace_rcu \
06ced8d6 22 list/cds_list_add_rcu.c \
05796604 23 list/cds_list_add_tail_rcu.c \
7eba9f88 24 list/cds_list_del_rcu.c \
17fb3188 25 list/cds_list_for_each_rcu.c \
d427bff9 26 list/cds_list_for_each_entry_rcu.c \
7eba9f88 27 list/cds_list_replace_rcu.c
f37f1d93 28
48337075
MD
29doc_examples_wfcqueuedir = ${doc_examplesdir}/wfcqueue
30
31dist_doc_examples_wfcqueue_DATA = \
32 wfcqueue/Makefile.cds_wfcq_enqueue \
33 wfcqueue/cds_wfcq_enqueue.c
34
c50fdd7c
MD
35if NO_SHARED
36# Don't build examples if shared libraries support was explicitly
37# disabled.
38else
48337075 39SUBDIRS_PROXY = qsbr-minimal list wfcqueue
c50fdd7c
MD
40
41all-local:
42 for subdir in $(SUBDIRS_PROXY); do \
b45f263b 43 cd $$subdir && $(MAKE) AM_CPPFLAGS="-I../../../urcu/ -I../../../" AM_LDFLAGS='-L../../../.libs/ -Wl,-rpath="$(PWD)/../../.libs/"' $(AM_MAKEFLAGS) all; cd ..; \
c50fdd7c
MD
44 done
45
46clean-local:
47 for subdir in $(SUBDIRS_PROXY); do \
b45f263b 48 cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) clean; cd ..; \
c50fdd7c 49 done
2f49a496 50endif
This page took 0.024063 seconds and 4 git commands to generate.