Skip to content
This repository was archived by the owner on Dec 20, 2023. It is now read-only.

Commit edc669b

Browse files
committed
Update to reflect upstream repository 'https://github.com:nestlabs/nlbuild-autotools.git' branch 'master' at tag '1.6.3'.
1 parent cb07d08 commit edc669b

File tree

3 files changed

+40
-3
lines changed

3 files changed

+40
-3
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.6.2
1+
1.6.3

third_party/nlbuild-autotools/repo/CHANGES

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
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+
16
1.6.2 (2018-10-09)
27

38
* Take a different approach to version flapping against 'make

third_party/nlbuild-autotools/repo/automake/post/rules/coverage.am

Lines changed: 34 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
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");
@@ -26,9 +27,40 @@
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-
3264
coverage: coverage-recursive
3365

3466
coverage: check-am

0 commit comments

Comments
 (0)