1 .PHONY
:tests report
all clean
10 @if
test -d build
; then \
12 ${MAKE} -C build
clean; \
14 ${MAKE} -C report
clean
16 @if
test -d tests
; then \
18 if
test ! -e tests
/configure
; then \
19 (cd tests
;.
/bootstrap.sh
); \
21 if
test ! -f build
/Makefile
; then \
22 (mkdir
-p build
;cd build
; \
23 ..
/tests
/configure
); \
25 ${MAKE} -C build
all doc
; \