mirror of
https://github.com/git-for-windows/git.git
synced 2025-12-14 01:11:29 -06:00
cocci: have "coccicheck{,-pending}" depend on "coccicheck-test"
Have the newly introduced "coccicheck-test" target run implicitly when "coccicheck" itself is run. As with e.g. the "check-chainlint" target (see [1]) it makes sense to run this unconditionally before we run other "spatch" rules as a basic sanity check. See 1. 803394459d4 (t/Makefile: add machinery to check correctness of chainlint.sed, 2018-07-11) Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
f7ff6597a7
commit
7a9a10b10e
2
Makefile
2
Makefile
@ -3161,9 +3161,11 @@ $(COCCI_TEST_RES_GEN): .build/contrib/coccinelle/tests/%.res : contrib/coccinell
|
|||||||
.PHONY: coccicheck-test
|
.PHONY: coccicheck-test
|
||||||
coccicheck-test: $(COCCI_TEST_RES_GEN)
|
coccicheck-test: $(COCCI_TEST_RES_GEN)
|
||||||
|
|
||||||
|
coccicheck: coccicheck-test
|
||||||
coccicheck: $(addsuffix .patch,$(filter-out %.pending.cocci,$(wildcard contrib/coccinelle/*.cocci)))
|
coccicheck: $(addsuffix .patch,$(filter-out %.pending.cocci,$(wildcard contrib/coccinelle/*.cocci)))
|
||||||
|
|
||||||
# See contrib/coccinelle/README
|
# See contrib/coccinelle/README
|
||||||
|
coccicheck-pending: coccicheck-test
|
||||||
coccicheck-pending: $(addsuffix .patch,$(wildcard contrib/coccinelle/*.pending.cocci))
|
coccicheck-pending: $(addsuffix .patch,$(wildcard contrib/coccinelle/*.pending.cocci))
|
||||||
|
|
||||||
.PHONY: coccicheck coccicheck-pending
|
.PHONY: coccicheck coccicheck-pending
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user