steps.mk
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Jun 24 16:24:09 2008 +0000 (2008-06-24)
changeset 611 eac4dc8da8a9
parent 544 6b15ef33e8f2
child 847 af75fc1fe0fc
permissions -rw-r--r--
New patches from Ioannis E. VENETIS to allow building more up-to-date Alpha x-compilers.
Some patches are still missing, though.
See: http://sourceware.org/ml/libc-help/2008-06/msg00061.html

/trunk/patches/glibc/2.5.1/270-glibc-alpha-cfi.patch | 25 25 0 0 ++++++++++
/trunk/patches/glibc/2.5.1/280-glibc-alpha-sigsuspend.patch | 24 24 0 0 ++++++++++
/trunk/patches/glibc/2.5/270-glibc-alpha-cfi.patch | 25 25 0 0 ++++++++++
/trunk/patches/glibc/2.5/280-glibc-alpha-sigsuspend.patch | 24 24 0 0 ++++++++++
/trunk/patches/glibc/linuxthreads-2.3.6/270-glibc-linuxthreads-alpha-cfi.patch | 25 25 0 0 ++++++++++
/trunk/patches/gcc/4.2.0/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.2.1/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.3.0/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.2.2/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.3.1/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.2.3/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
11 files changed, 225 insertions(+)
     1 # Makefile for each steps
     2 # Copyright 2006 Yann E. MORIN <yann.morin.1998@anciens.enib.fr>
     3 
     4 CT_STEPS := libc_check_config   \
     5             kernel_check_config \
     6             kernel_headers      \
     7             gmp                 \
     8             mpfr                \
     9             binutils            \
    10             cc_core_pass_1      \
    11             libc_headers        \
    12             libc_start_files    \
    13             cc_core_pass_2      \
    14             libc                \
    15             cc                  \
    16             libc_finish         \
    17             binutils_target     \
    18             gmp_target          \
    19             mpfr_target         \
    20             tools               \
    21             debug               \
    22 
    23 export CT_STEPS
    24 
    25 $(CT_STEPS):
    26 	@$(CT_NG) RESTART=$@ STOP=$@ build
    27 
    28 $(patsubst %,+%,$(CT_STEPS)):
    29 	@$(CT_NG) STOP=$(patsubst +%,%,$@) build
    30 
    31 $(patsubst %,%+,$(CT_STEPS)):
    32 	@$(CT_NG) RESTART=$(patsubst %+,%,$@) build
    33 
    34 help-build::
    35 	@echo  '  list-steps         - List all build steps'
    36 
    37 list-steps:
    38 	@echo  'Available build steps, in order:'
    39 	@for step in $(CT_STEPS); do    \
    40 	     echo "  - $${step}";       \
    41 	 done
    42 	@echo  'Use "$(CT_NG) <step>" to execute only that step.'
    43 	@echo  'Use "$(CT_NG) +<step>" to execute up to that step.'
    44 	@echo  'Use "$(CT_NG) <step>+" to execute from that step onward.'