forked from kubernetes/kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make 'make clean' not depend on genfiles metadata
Previously even 'make clean' would first produce dependency information (slow) and sinclude all the metadata, possibly restarting the make, before removing the things it just did. Now dependencies are only processed when something explicitly depends on them, by calling 'make' on the rules around generated files, rather than sincluding them. Net result: make clean is faster and safer. Additionally, bash tab-completion for 'make' does not run the slow 'find' any more.
- Loading branch information
Showing
2 changed files
with
39 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters