diff --git a/src/runtime/Makefile b/src/runtime/Makefile index 4a69c05c41..52c876bd48 100644 --- a/src/runtime/Makefile +++ b/src/runtime/Makefile @@ -582,7 +582,8 @@ $(MONITOR_OUTPUT): $(SOURCES) $(GENERATED_FILES) $(MAKEFILE_LIST) .git-commit install \ show-header \ show-summary \ - show-variables + show-variables \ + vendor $(TARGET).coverage: $(SOURCES) $(GENERATED_FILES) $(MAKEFILE_LIST) $(QUIET_TEST)go test -o $@ -covermode count @@ -647,6 +648,11 @@ install-scripts: $(SCRIPTS) install-completions: $(QUIET_INST)install --mode 0644 -D $(BASH_COMPLETIONS) $(DESTDIR)/$(BASH_COMPLETIONSDIR)/$(notdir $(BASH_COMPLETIONS)); +handle_vendor: + go mod tidy + go mod vendor + go mod verify + clean: $(QUIET_CLEAN)rm -f \ $(CONFIGS) \