Commit 92e22b42 authored by k8s-merge-robot's avatar k8s-merge-robot Committed by GitHub

Merge pull request #29592 from xiangpengzhao/add-fed-make-target

Automatic merge from submit-queue Add rules for all directories in federation/cmd/ federation related target is not included in Makefile. Add it. /cc @thockin BTW, `make help` is still WIP.
parents c8d1ddfc 5f66662c
...@@ -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 federation/cmd/
#
# Example:
# make federation-apiserver federation-controller-manager
.PHONY: $(notdir $(abspath $(wildcard federation/cmd/*/)))
$(notdir $(abspath $(wildcard federation/cmd/*/))): generated_files
hack/make-rules/build.sh federation/cmd/$@
# Produce auto-generated files needed for the build. # Produce auto-generated files needed for the build.
# #
# 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