Skip to content

Commit

Permalink
Cleanup unneeded deps on generated_files
Browse files Browse the repository at this point in the history
  • Loading branch information
thockin committed Jul 20, 2016
1 parent ab703e0 commit 8fb8f3d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ ginkgo:
# Runs all the presubmission verifications.
#
# Args:
# BRANCH: Branch to be passed to hack/verify-godeps.sh script.
# BRANCH: Branch to be passed to verify-godeps.sh script.
#
# Example:
# make verify
Expand Down Expand Up @@ -174,7 +174,7 @@ test-e2e-node: ginkgo generated_files
#
# Example:
# make test-cmd
test-cmd:
test-cmd: generated_files
@hack/make-rules/test-cmd.sh
.PHONY: test-cmd

Expand Down Expand Up @@ -217,15 +217,15 @@ vet:
# Example:
# make release
.PHONY: release
release: generated_files
release:
build/release.sh

# Build a release, but skip tests
#
# Example:
# make release-skip-tests
.PHONY: release-skip-tests quick-release
release-skip-tests quick-release: generated_files
release-skip-tests quick-release:
KUBE_RELEASE_RUN_TESTS=n KUBE_FASTBUILD=true build/release.sh

# Cross-compile for all platforms
Expand Down

0 comments on commit 8fb8f3d

Please sign in to comment.