steps.mk
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon May 25 17:22:54 2009 +0000 (2009-05-25)
branchgcc-4.4
changeset 1382 b3b1369752ba
parent 1337 7f742f73c2d1
child 1384 b23f3c2e0c73
permissions -rw-r--r--
/devel/gcc-4.4:
- TODO: add new item

-------- diffstat follows --------
/devel/gcc-4.4/TODO | 1 1 0 0 +
1 file changed, 1 insertion(+)
     1 # Makefile for each steps
     2 # Copyright 2006 Yann E. MORIN <yann.morin.1998@anciens.enib.fr>
     3 
     4 # ----------------------------------------------------------
     5 # This is the steps help entry
     6 
     7 help-build::
     8 	@echo  '  list-steps         - List all build steps'
     9 
    10 help-env::
    11 	@echo  '  STOP               - Stop the build just after this step'
    12 	@echo  '  RESTART            - Restart the build just before this step'
    13 
    14 # ----------------------------------------------------------
    15 # The steps list
    16 
    17 # Please keep the last line with a '\' and keep the following empy line:
    18 # it helps when diffing and merging.
    19 CT_STEPS := libc_check_config   \
    20             kernel_headers      \
    21             gmp                 \
    22             mpfr                \
    23             ppl                 \
    24             cloog               \
    25             binutils            \
    26             elf2flt             \
    27             cc_core_pass_1      \
    28             libc_headers        \
    29             libc_start_files    \
    30             cc_core_pass_2      \
    31             libc                \
    32             cc                  \
    33             libc_finish         \
    34             gmp_target          \
    35             mpfr_target         \
    36             binutils_target     \
    37             tools               \
    38             debug               \
    39             finish              \
    40 
    41 # Make the list available to sub-processes (scripts/crosstool-NG.sh needs it)
    42 export CT_STEPS
    43 
    44 # Print the steps list
    45 PHONY += list-steps
    46 list-steps:
    47 	@echo  'Available build steps, in order:'
    48 	@for step in $(CT_STEPS); do    \
    49 	     echo "  - $${step}";       \
    50 	 done
    51 	@echo  'Use "<step>" as action to execute only that step.'
    52 	@echo  'Use "+<step>" as action to execute up to that step.'
    53 	@echo  'Use "<step>+" as action to execute from that step onward.'
    54 
    55 # ----------------------------------------------------------
    56 # This part deals with executing steps
    57 
    58 $(CT_STEPS):
    59 	$(SILENT)$(MAKE) -rf $(CT_NG) V=$(V) RESTART=$@ STOP=$@ build
    60 
    61 $(patsubst %,+%,$(CT_STEPS)):
    62 	$(SILENT)$(MAKE) -rf $(CT_NG) V=$(V) STOP=$(patsubst +%,%,$@) build
    63 
    64 $(patsubst %,%+,$(CT_STEPS)):
    65 	$(SILENT)$(MAKE) -rf $(CT_NG) V=$(V) RESTART=$(patsubst %+,%,$@) build