summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-07-04 22:18:19 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-07-04 22:18:19 (GMT)
commit51528878bba6a366e28cfc170a9148fb7b0a5dbd (patch)
tree7526f0b1114a34e5f374513c237b9b7a7051f13b
parent1319b8882a1e8a719a1143b760a77e441bcd66ec (diff)
ct-ng now needs the 'build' action to be passed when restarting/stopping at a specific step.
Don't use make to build steps, rather use CT_NG to call ct-ng.
-rw-r--r--Makefile.steps6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.steps b/Makefile.steps
index 7c1e41b..f4f051e 100644
--- a/Makefile.steps
+++ b/Makefile.steps
@@ -17,13 +17,13 @@ CT_STEPS := libc_check_config \
debug \
$(CT_STEPS):
- @make -C "$(CT_TOP_DIR)" -f $(CT_MAKEFILE) RESTART=$@ STOP=$@
+ @$(CT_NG) RESTART=$@ STOP=$@ build
$(patsubst %,-%,$(CT_STEPS)):
- @make -C "$(CT_TOP_DIR)" -f $(CT_MAKEFILE) STOP=$(patsubst -%,%,$@)
+ @$(CT_NG) STOP=$(patsubst -%,%,$@) build
$(patsubst %,%-,$(CT_STEPS)):
- @make -C "$(CT_TOP_DIR)" -f $(CT_MAKEFILE) RESTART=$(patsubst %-,%,$@)
+ @$(CT_NG) RESTART=$(patsubst %-,%,$@) build
help-build::
@echo ' liststeps - Lists all build steps'