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 test "$(WITH_TESTS)" = "yes" && $(build_dir)/tests/ucxtest |
60 $(build_dir)/tests/ucxtest |
61 |
61 |
62 test-compile: |
62 test-compile: |
63 @(test "$(WITH_TESTS)" = "yes" && cd tests && $(MAKE)) \ |
63 cd tests && $(MAKE) |
64 || echo "[ Tests disabled - skipped ]" |
|
65 |
64 |
66 docs: FORCE |
65 docs: FORCE |
67 @(test "$(WITH_DOCS_API)" = "yes" && cd docs && $(MAKE) all-api) \ |
66 @(test "$(WITH_DOCS_API)" = "yes" && cd docs && $(MAKE) all-api) \ |
68 || echo "[ Generation of API Docs disabled - skipped ]" |
67 || echo "[ Generation of API Docs disabled - skipped ]" |
69 @(test "$(WITH_DOCS_HTML)" = "yes" && cd docs && $(MAKE) all-html) \ |
68 @(test "$(WITH_DOCS_HTML)" = "yes" && cd docs && $(MAKE) all-html) \ |
70 || echo "[ Generation of HTML Docs disabled - skipped ]" |
69 || echo "[ Generation of HTML Docs disabled - skipped ]" |
71 |
70 |
72 update-rules: |
71 update-rules: |
73 make/update-rules.sh src |
72 make/update-rules.sh src |
|
73 CFLAGS='$(CFLAGS) -I../src' make/update-rules.sh tests '$$(TEST_DIR)' |
74 |
74 |
75 FORCE: |
75 FORCE: |