Makefile

changeset 755
255ee4abf2ec
parent 754
4bc7d966c9db
child 766
e59b76889f00
equal deleted inserted replaced
754:4bc7d966c9db 755:255ee4abf2ec
55 55
56 static: FORCE 56 static: FORCE
57 @cd src && $(MAKE) static 57 @cd src && $(MAKE) static
58 58
59 check: test-compile FORCE 59 check: test-compile FORCE
60 $(build_dir)/tests/ucxtest 60 test "$(WITH_TESTS)" = "yes" && $(build_dir)/tests/ucxtest
61 61
62 test-compile: 62 test-compile:
63 @(test "$(WITH_TESTS)" = "yes" && cd tests && $(MAKE)) \ 63 @(test "$(WITH_TESTS)" = "yes" && cd tests && $(MAKE)) \
64 || echo "[ Tests disabled - skipped ]" 64 || echo "[ Tests disabled - skipped ]"
65 65
67 @(test "$(WITH_DOCS_API)" = "yes" && cd docs && $(MAKE) all-api) \ 67 @(test "$(WITH_DOCS_API)" = "yes" && cd docs && $(MAKE) all-api) \
68 || echo "[ Generation of API Docs disabled - skipped ]" 68 || echo "[ Generation of API Docs disabled - skipped ]"
69 @(test "$(WITH_DOCS_HTML)" = "yes" && cd docs && $(MAKE) all-html) \ 69 @(test "$(WITH_DOCS_HTML)" = "yes" && cd docs && $(MAKE) all-html) \
70 || echo "[ Generation of HTML Docs disabled - skipped ]" 70 || echo "[ Generation of HTML Docs disabled - skipped ]"
71 71
72 update-rules:
73 make/update-rules.sh src
74
72 FORCE: 75 FORCE:

mercurial