doc/examples: cds_list_del_rcu
[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 \
06ced8d6
MD
17 list/Makefile.cds_list_del_rcu \
18 list/cds_list_add_rcu.c \
19 list/cds_list_del_rcu.c
f37f1d93 20
c50fdd7c
MD
21if NO_SHARED
22# Don't build examples if shared libraries support was explicitly
23# disabled.
24else
f37f1d93 25SUBDIRS_PROXY = qsbr-minimal list
c50fdd7c
MD
26
27all-local:
28 for subdir in $(SUBDIRS_PROXY); do \
b45f263b 29 cd $$subdir && $(MAKE) AM_CPPFLAGS="-I../../../urcu/ -I../../../" AM_LDFLAGS='-L../../../.libs/ -Wl,-rpath="$(PWD)/../../.libs/"' $(AM_MAKEFLAGS) all; cd ..; \
c50fdd7c
MD
30 done
31
32clean-local:
33 for subdir in $(SUBDIRS_PROXY); do \
b45f263b 34 cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) clean; cd ..; \
c50fdd7c 35 done
2f49a496 36endif
This page took 0.023179 seconds and 4 git commands to generate.