Fix the step shortcuts (using a dash would confuse make).
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Jul 30 19:35:39 2007 +0000 (2007-07-30)
changeset 30456b97558f14a
parent 303 bd135ab29402
child 305 00a7e6c275da
Fix the step shortcuts (using a dash would confuse make).
docs/overview.txt
steps.mk
     1.1 --- a/docs/overview.txt	Sun Jul 29 19:15:27 2007 +0000
     1.2 +++ b/docs/overview.txt	Mon Jul 30 19:35:39 2007 +0000
     1.3 @@ -277,9 +277,9 @@
     1.4  is equivalent to:
     1.5    ct-ng RESTART=libs_headers STOP=libc_headers
     1.6  
     1.7 -The shortcuts -step_name and step_name- allow to respectively stop or restart
     1.8 +The shortcuts +step_name and step_name+ allow to respectively stop or restart
     1.9  at that step. Thus:
    1.10 -  ct-ng -libc_headers        and:    ct-ng libc_headers-
    1.11 +  ct-ng +libc_headers        and:    ct-ng libc_headers+
    1.12  are equivalent to:
    1.13    ct-ng STOP=libc_headers    and:    ct-ng RESTART=libc_headers
    1.14  
     2.1 --- a/steps.mk	Sun Jul 29 19:15:27 2007 +0000
     2.2 +++ b/steps.mk	Mon Jul 30 19:35:39 2007 +0000
     2.3 @@ -19,11 +19,11 @@
     2.4  $(CT_STEPS):
     2.5  	@$(CT_NG) RESTART=$@ STOP=$@ build
     2.6  
     2.7 -$(patsubst %,-%,$(CT_STEPS)):
     2.8 -	@$(CT_NG) STOP=$(patsubst -%,%,$@) build
     2.9 +$(patsubst %,+%,$(CT_STEPS)):
    2.10 +	@$(CT_NG) STOP=$(patsubst +%,%,$@) build
    2.11  
    2.12 -$(patsubst %,%-,$(CT_STEPS)):
    2.13 -	@$(CT_NG) RESTART=$(patsubst %-,%,$@) build
    2.14 +$(patsubst %,%+,$(CT_STEPS)):
    2.15 +	@$(CT_NG) RESTART=$(patsubst %+,%,$@) build
    2.16  
    2.17  help-build::
    2.18  	@echo  '  liststeps      - List all build steps'