Did some syntactical updates
[educational.data.git] / fag / speciale / makefile
blob31719eff4d12002b66c8e60053a51804f60f7efe
1 .PHONY:tests report all clean
3 all:
4 -${MAKE} tests
5 -${MAKE} report
7 fullclean: clean
8 rm -rf build
9 clean:
10 @if test -d build; then \
11 cd build; \
12 ${MAKE} -C build clean; \
14 ${MAKE} -C report clean
15 tests:
16 @if test -d tests; then \
17 exit 1; \
18 if test ! -e tests/configure; then \
19 (cd tests;./bootstrap.sh); \
20 fi; \
21 if test ! -f build/Makefile; then \
22 (mkdir -p build;cd build; \
23 ../tests/configure ); \
24 fi; \
25 ${MAKE} -C build all doc; \
28 report:
29 ${MAKE} -C report