Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge branch 'dont-clean-phony' of git://github.com/pcc/ninja | Evan Martin | 2012-04-26 | 1 | -0/+25 |
|\ | | | | | | | | | Conflicts: src/clean.cc | ||||
| * | Don't delete phony targets when cleaning a specified target | Peter Collingbourne | 2012-02-28 | 1 | -0/+25 |
| | | | | | | | | Also, modify Cleaner::CleanAll to use Edge::is_phony. | ||||
* | | Remove depfiles when running when running "ninja -t clean <target>" | Qingning Huo | 2012-03-14 | 1 | -0/+30 |
|/ | | | | or "ninja -t clean -r <rule>" | ||||
* | Response files | unknown | 2012-02-09 | 1 | -0/+61 |
| | |||||
* | Have the clean tool remove depfiles | Peter Collingbourne | 2011-12-06 | 1 | -0/+15 |
| | |||||
* | Implement generator rules | Peter Collingbourne | 2011-10-15 | 1 | -0/+22 |
| | | | | | | | | | | | | | Introduce a rule attribute "generator" which, if present, specifies that this rule is used to re-invoke the generator program. Files built using generator rules are treated specially in two ways: firstly, they will not be rebuilt if the command line changes; and secondly, they are not cleaned by default. A command line flag "-g" is introduced for the clean tool, which causes it to remove generator files. Fixes issue #102. | ||||
* | windows: fix more signedness warnings | Evan Martin | 2011-05-08 | 1 | -12/+12 |
| | |||||
* | The cleaner can be used multiple times now. | Nicolas Despres | 2011-05-02 | 1 | -90/+48 |
| | |||||
* | Return non-zero status when errors occur. | Nicolas Despres | 2011-05-02 | 1 | -4/+12 |
| | | | | | | Clean all was not returning non-zero when an error occur (like when failing to remove a directory). This patch fix the problem and add a test for it. | ||||
* | Add a test for the clean tool. | Nicolas Despres | 2011-05-02 | 1 | -0/+255 |
It also fix a bug about the count of removed file reported. |