summaryrefslogtreecommitdiff
path: root/Makefile.steps
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-07-01 19:04:20 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-07-01 19:04:20 (GMT)
commit26713d42100ebb0f949777060102b8fa20c22ffd (patch)
treec19e1e5ca3405de45e3465487ec1617fd579b532 /Makefile.steps
parentc2abd16d69e6fb9514c91d81d25aa56a0633723c (diff)
Merge the build system to trunk: ct-ng is now installable:
- ./configure --prefix=/some/place - make - make install - export PATH="${PATH}:/some/place/bin" - ct-ng <action>
Diffstat (limited to 'Makefile.steps')
-rw-r--r--Makefile.steps6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.steps b/Makefile.steps
index caf1566..7c1e41b 100644
--- a/Makefile.steps
+++ b/Makefile.steps
@@ -17,13 +17,13 @@ CT_STEPS := libc_check_config \
debug \
$(CT_STEPS):
- @make -C "$(CT_TOP_DIR)" RESTART=$@ STOP=$@
+ @make -C "$(CT_TOP_DIR)" -f $(CT_MAKEFILE) RESTART=$@ STOP=$@
$(patsubst %,-%,$(CT_STEPS)):
- @make -C "$(CT_TOP_DIR)" STOP=$(patsubst -%,%,$@)
+ @make -C "$(CT_TOP_DIR)" -f $(CT_MAKEFILE) STOP=$(patsubst -%,%,$@)
$(patsubst %,%-,$(CT_STEPS)):
- @make -C "$(CT_TOP_DIR)" RESTART=$(patsubst %-,%,$@)
+ @make -C "$(CT_TOP_DIR)" -f $(CT_MAKEFILE) RESTART=$(patsubst %-,%,$@)
help-build::
@echo ' liststeps - Lists all build steps'