This repository was archived by the owner on Dec 20, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +40
-3
lines changed
third_party/nlbuild-autotools/repo Expand file tree Collapse file tree 3 files changed +40
-3
lines changed Original file line number Diff line number Diff line change 1- 1.6.2
1+ 1.6.3
Original file line number Diff line number Diff line change 1+ 1.6.3 (2018-10-19)
2+
3+ * Added support for coverage-local and check-local targets. Added
4+ documentation for all coverage-related targets.
5+
161.6.2 (2018-10-09)
27
38 * Take a different approach to version flapping against 'make
Original file line number Diff line number Diff line change 11#
2+ # Copyright 2018 Google LLC. All Rights Reserved.
23# Copyright 2015-2016 Nest Labs Inc. All Rights Reserved.
34#
45# Licensed under the Apache License, Version 2.0 (the "License");
2627# invocations. The 'check-am' and '$(BUILT_SOURCES)' are the key
2728# automake-specific dependencies to ensure that happens.
2829#
30+ # This defines the following make targets:
31+ #
32+ # coverage:
33+ # Execute local and recursive coverage targets across the
34+ # project sub-tree at the current invocation point.
35+ #
36+ # This target is intended to be user-visibile and -invoked.
37+ #
38+ # coverage-local:
39+ # Execute local coverage targets at the current invocation point.
40+ #
41+ # This target is intended to be user-visibile and -invoked.
42+ #
43+ # coverage-recursive:
44+ # Recursively execute the 'coverage' target across the
45+ # project sub-tree at the current invocation point.
46+ #
47+ # This target is NOT intended to be user-visibile and -invoked.
48+ #
49+ # check-local:
50+ # Alias for the 'check-am' target. Execute local check
51+ # targets at the current invocation point. Local coverage targets
52+ # may depend on this to ensure local tests are made before
53+ # coverage targets are made.
54+ #
55+ # This target is intended to be user-visibile and -invoked.
56+ #
57+
58+ .PHONY: coverage coverage-recursive coverage-local check-local
59+
60+ check-local: check-am
61+
62+ coverage: coverage-local
2963
30- .PHONY: coverage coverage-recursive
31-
3264coverage: coverage-recursive
3365
3466coverage: check-am
You can’t perform that action at this time.
0 commit comments