mirror of https://github.com/k3s-io/k3s
Merge pull request #29795 from xiangpengzhao/fix-makefile-cleanup
Automatic merge from submit-queue Makefile cleanup Keep the same style for each PHONY and rule. cc @thockinpull/6/head
commit
5841f6e164
6
Makefile
6
Makefile
|
@ -80,9 +80,9 @@ all: generated_files
|
||||||
#
|
#
|
||||||
# Example:
|
# Example:
|
||||||
# make ginkgo
|
# make ginkgo
|
||||||
|
.PHONY: ginkgo
|
||||||
ginkgo:
|
ginkgo:
|
||||||
hack/make-rules/build.sh vendor/github.com/onsi/ginkgo/ginkgo
|
hack/make-rules/build.sh vendor/github.com/onsi/ginkgo/ginkgo
|
||||||
.PHONY: ginkgo
|
|
||||||
|
|
||||||
# Runs all the presubmission verifications.
|
# Runs all the presubmission verifications.
|
||||||
#
|
#
|
||||||
|
@ -174,9 +174,9 @@ test-e2e-node: ginkgo generated_files
|
||||||
#
|
#
|
||||||
# Example:
|
# Example:
|
||||||
# make test-cmd
|
# make test-cmd
|
||||||
test-cmd: generated_files
|
|
||||||
@hack/make-rules/test-cmd.sh
|
|
||||||
.PHONY: test-cmd
|
.PHONY: test-cmd
|
||||||
|
test-cmd: generated_files
|
||||||
|
hack/make-rules/test-cmd.sh
|
||||||
|
|
||||||
# Remove all build artifacts.
|
# Remove all build artifacts.
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in New Issue