Skip to content

Commit

Permalink
Merge pull request kubernetes#29795 from xiangpengzhao/fix-makefile-c…
Browse files Browse the repository at this point in the history
…leanup

Automatic merge from submit-queue

Makefile cleanup

Keep the same style for each PHONY and rule.

cc @thockin
  • Loading branch information
Kubernetes Submit Queue authored Aug 4, 2016
2 parents 689f06f + aa47880 commit 5841f6e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ all: generated_files
#
# Example:
# make ginkgo
.PHONY: ginkgo
ginkgo:
hack/make-rules/build.sh vendor/github.com/onsi/ginkgo/ginkgo
.PHONY: ginkgo

# Runs all the presubmission verifications.
#
Expand Down Expand Up @@ -174,9 +174,9 @@ test-e2e-node: ginkgo generated_files
#
# Example:
# make test-cmd
test-cmd: generated_files
@hack/make-rules/test-cmd.sh
.PHONY: test-cmd
test-cmd: generated_files
hack/make-rules/test-cmd.sh

# Remove all build artifacts.
#
Expand Down

0 comments on commit 5841f6e

Please sign in to comment.