Skip to content
Snippets Groups Projects
Commit 5de8d26e authored by Allan Blanchard's avatar Allan Blanchard
Browse files

[lint] Makefile targets coherent with headers

parent a75eee4b
No related branches found
No related tags found
No related merge requests found
......@@ -71,23 +71,23 @@ endif
ifeq ($(LINTCK.ENABLED),yes)
.PHONY: lint
lint:
.PHONY: check-lint
check-lint:
$(LINTCK.COLLECT) | $(LINTCK.CMD) $(LINTCK_EXTRA)
.PHONY: fix-lint
fix-lint:
.PHONY: lint
lint:
$(LINTCK.COLLECT) | $(LINTCK.CMD) -u $(LINTCK_EXTRA)
else
.PHONY: lint
lint:
.PHONY: check-lint
check-lint:
$(error "Cannot lint: not a Git repository, \
you should specify LINTCK_FILES_INPUT")
.PHONY: fix-lint
fix-lint:
.PHONY: lint
lint:
$(error "Cannot fix-lint: not a Git repository, \
you should specify LINTCK_FILES_INPUT")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment