summaryrefslogtreecommitdiff
path: root/steps.mk
diff options
context:
space:
mode:
Diffstat (limited to 'steps.mk')
-rw-r--r--steps.mk7
1 files changed, 5 insertions, 2 deletions
diff --git a/steps.mk b/steps.mk
index e6261c6..347afa9 100644
--- a/steps.mk
+++ b/steps.mk
@@ -30,10 +30,13 @@ $(patsubst %,%+,$(CT_STEPS)):
@$(CT_NG) RESTART=$(patsubst %+,%,$@) build
help-build::
- @echo ' liststeps - List all build steps'
+ @echo ' list-steps - List all build steps'
-liststeps:
+list-steps:
@echo 'Available build steps, in order:'
@for step in $(CT_STEPS); do \
echo " - $${step}"; \
done
+ @echo 'Use "$(CT_NG) <step>" to execute only that step.'
+ @echo 'Use "$(CT_NG) +<step>" to execute up to that step.'
+ @echo 'Use "$(CT_NG) <step>+" to execute from that step onward.'