rculist: ensure atomic updates of next pointers
[urcu.git] / doc / examples / Makefile.am
... / ...
CommitLineData
1doc_examplesdir = ${docdir}/examples
2
3doc_examples_qsbr_minimaldir = ${doc_examplesdir}/qsbr-minimal
4
5dist_doc_examples_qsbr_minimal_DATA = \
6 qsbr-minimal/Makefile \
7 qsbr-minimal/qsbr-minimal.c
8
9if NO_SHARED
10# Don't build examples if shared libraries support was explicitly
11# disabled.
12else
13SUBDIRS_PROXY = qsbr-minimal
14
15all-local:
16 for subdir in $(SUBDIRS_PROXY); do \
17 cd $$subdir && $(MAKE) AM_CPPFLAGS="-I../../../urcu/ -I../../../" AM_LDFLAGS='-L../../../.libs/ -Wl,-rpath="$(PWD)/../../.libs/"' $(AM_MAKEFLAGS) all; cd ..; \
18 done
19
20clean-local:
21 for subdir in $(SUBDIRS_PROXY); do \
22 cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) clean; cd ..; \
23 done
24endif
This page took 0.022248 seconds and 4 git commands to generate.