aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Ninja.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Ninja.cpp b/src/Ninja.cpp
index 5470d2b..09df2c1 100644
--- a/src/Ninja.cpp
+++ b/src/Ninja.cpp
@@ -214,6 +214,8 @@ namespace ninja
result += "\n\n";
}
+ result += "build always: phony\n\n";
+
for(const NinjaBuild *build : builds)
{
result += "build ";
@@ -232,6 +234,9 @@ namespace ninja
}
}
+ if(build->alwaysRun)
+ result += " | always";
+
for(const NinjaArgValue &additionalArg : build->additionalArgs)
{
result += "\n ";