Commit 7cdbd817 authored by k8s-merge-robot's avatar k8s-merge-robot Committed by GitHub

Merge pull request #29733 from xiangpengzhao/add-make-scheduler

Automatic merge from submit-queue Add rules for kube-scheduler Just find that we have also missed the rule for `kube-scheduler`. I don't want to mix the rule with #29683 (make help) now. Will merge them finally if #29683 can be merged.
parents 0693d479 6ad631b2
...@@ -250,6 +250,14 @@ cross: ...@@ -250,6 +250,14 @@ cross:
$(notdir $(abspath $(wildcard cmd/*/))): generated_files $(notdir $(abspath $(wildcard cmd/*/))): generated_files
hack/make-rules/build.sh cmd/$@ hack/make-rules/build.sh cmd/$@
# Add rules for all directories in plugin/cmd/
#
# Example:
# make kube-scheduler
.PHONY: $(notdir $(abspath $(wildcard plugin/cmd/*/)))
$(notdir $(abspath $(wildcard plugin/cmd/*/))): generated_files
hack/make-rules/build.sh plugin/cmd/$@
# Add rules for all directories in federation/cmd/ # Add rules for all directories in federation/cmd/
# #
# Example: # Example:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment