From: Mathieu Desnoyers Date: Thu, 20 Jun 2013 13:21:03 +0000 (-0400) Subject: example makefile: add missing cd .. X-Git-Tag: v0.8.0~62 X-Git-Url: http://git.liburcu.org/?p=urcu.git;a=commitdiff_plain;h=b45f263b7f87f8f0ce1e6659021688a55595f701 example makefile: add missing cd .. Signed-off-by: Mathieu Desnoyers --- diff --git a/doc/examples/Makefile.am b/doc/examples/Makefile.am index 6f427c0..0d0c021 100644 --- a/doc/examples/Makefile.am +++ b/doc/examples/Makefile.am @@ -14,11 +14,11 @@ SUBDIRS_PROXY = qsbr-minimal all-local: for subdir in $(SUBDIRS_PROXY); do \ - cd $$subdir && $(MAKE) AM_CPPFLAGS="-I../../../urcu/ -I../../../" AM_LDFLAGS='-L../../../.libs/ -Wl,-rpath="$(PWD)/../../.libs/"' $(AM_MAKEFLAGS) all; \ + cd $$subdir && $(MAKE) AM_CPPFLAGS="-I../../../urcu/ -I../../../" AM_LDFLAGS='-L../../../.libs/ -Wl,-rpath="$(PWD)/../../.libs/"' $(AM_MAKEFLAGS) all; cd ..; \ done clean-local: for subdir in $(SUBDIRS_PROXY); do \ - cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) clean; \ + cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) clean; cd ..; \ done endif