diff options
| author | Shinichiro Hamaji <shinichiro.hamaji@gmail.com> | 2015-09-02 11:22:33 +0900 |
|---|---|---|
| committer | Shinichiro Hamaji <shinichiro.hamaji@gmail.com> | 2015-09-02 11:26:35 +0900 |
| commit | 5bd069df4829dee15f95ba5cb0888a0c7ad611d6 (patch) | |
| tree | 37ed809b006275a2a8e8aa50115871ba40f7c702 /main.cc | |
| parent | 695dead1375838c9b8a0ba9e87d402f75e4e11f2 (diff) | |
Add --gen_all_phony_targets flag
Let me keep this flag for a while, as there would be some
people who are still using m2n+ninja.sh workflow.
Diffstat (limited to 'main.cc')
| -rw-r--r-- | main.cc | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -94,6 +94,9 @@ static void ParseCommandLine(int argc, char* argv[], g_enable_stat_logs = true; } else if (!strcmp(arg, "--ninja")) { g_generate_ninja = true; + } else if (!strcmp(arg, "--gen_all_phony_targets")) { + // TODO: Remove this. + g_gen_all_phony_targets = true; } else if (!strcmp(arg, "--regen")) { // TODO: Make this default. g_regen = true; |
