From 41dee81554b2f37f083514ec435d7d5fb2fa329a Mon Sep 17 00:00:00 2001 From: Krasi Georgiev Date: Tue, 19 Feb 2019 13:25:10 +0200 Subject: [PATCH] Makefile.common: add check_license by default. (#5236) --- Makefile.common | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.common b/Makefile.common index a422e1b69a..7e86f4543a 100644 --- a/Makefile.common +++ b/Makefile.common @@ -87,14 +87,14 @@ ifeq ($(GOHOSTARCH),amd64) endif endif -.PHONY: all -all: precheck style staticcheck unused build test - # This rule is used to forward a target like "build" to "common-build". This # allows a new "build" target to be defined in a Makefile which includes this # one and override "common-build" without override warnings. %: common-% ; +.PHONY: common-all +common-all: precheck style check_license staticcheck unused build test + .PHONY: common-style common-style: @echo ">> checking code style"