Move CREDITS to docs/
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Jul 22 21:29:42 2007 +0000 (2007-07-22)
changeset 286983d9c3949e1
parent 285 148f0a31e2d8
child 287 5bf44f032205
Move CREDITS to docs/
Be a bit verbose when restoring a sample.
CREDITS
Makefile.in
docs/CREDITS
samples/samples.mk
     1.1 --- a/CREDITS	Sun Jul 22 17:44:27 2007 +0000
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,24 +0,0 @@
     1.4 -I would like to thank these fine people for making crosstool-NG possible:
     1.5 -
     1.6 -  Dan KEGEL, the original author of crosstool: http://www.kegel.com/
     1.7 -    Dan was very helpfull and willing to help when I build my first toolchains.
     1.8 -    I owe him one. Thank you Dan!
     1.9 -    Some crosstool-NG scripts have code snippets coming almost as-is from the
    1.10 -    original work by Dan.
    1.11 -
    1.12 -And in order of appearance on the crossgcc ML:
    1.13 -
    1.14 -  Allan CLARK for his investigations on building toolchains on MacOS-X.
    1.15 -    Allan made extensive tests of the first alpha of crosstool-NG-ng on his
    1.16 -    MacOS-X, and unveiled some bash-2.05 weirdness.
    1.17 -
    1.18 -  Enrico WEIGELT for some improvements of the build procedure:
    1.19 -    - cxa_atexit disabling for C libraries not supporting it (uClibc)
    1.20 -    - misc suggestions (restartable build, ...)
    1.21 -
    1.22 -  Robert P. J. DAY:
    1.23 -    - some small improvements to the configurator, misc prompting glitches
    1.24 -    - 'sanitised' patches for binutils-2.17
    1.25 -    - patches for glibc-2.5
    1.26 -
    1.27 -More to come as they help.
     2.1 --- a/Makefile.in	Sun Jul 22 17:44:27 2007 +0000
     2.2 +++ b/Makefile.in	Sun Jul 22 21:29:42 2007 +0000
     2.3 @@ -101,9 +101,9 @@
     2.4  	 done
     2.5  
     2.6  install-doc: install-local-test $(DOCDIR)
     2.7 -	@for doc_file in CREDITS docs/overview.txt; do  \
     2.8 -	     echo "  INST   $${doc_file}";              \
     2.9 -	     install -m 644 "$${doc_file}" $(DOCDIR);   \
    2.10 +	@for doc_file in docs/CREDITS docs/overview.txt; do	\
    2.11 +	     echo "  INST   $${doc_file}";              	\
    2.12 +	     install -m 644 "$${doc_file}" $(DOCDIR);   	\
    2.13  	 done
    2.14  
    2.15  install-man: install-local-test $(MANDIR)
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/docs/CREDITS	Sun Jul 22 21:29:42 2007 +0000
     3.3 @@ -0,0 +1,24 @@
     3.4 +I would like to thank these fine people for making crosstool-NG possible:
     3.5 +
     3.6 +  Dan KEGEL, the original author of crosstool: http://www.kegel.com/
     3.7 +    Dan was very helpfull and willing to help when I build my first toolchains.
     3.8 +    I owe him one. Thank you Dan!
     3.9 +    Some crosstool-NG scripts have code snippets coming almost as-is from the
    3.10 +    original work by Dan.
    3.11 +
    3.12 +And in order of appearance on the crossgcc ML:
    3.13 +
    3.14 +  Allan CLARK for his investigations on building toolchains on MacOS-X.
    3.15 +    Allan made extensive tests of the first alpha of crosstool-NG-ng on his
    3.16 +    MacOS-X, and unveiled some bash-2.05 weirdness.
    3.17 +
    3.18 +  Enrico WEIGELT for some improvements of the build procedure:
    3.19 +    - cxa_atexit disabling for C libraries not supporting it (uClibc)
    3.20 +    - misc suggestions (restartable build, ...)
    3.21 +
    3.22 +  Robert P. J. DAY:
    3.23 +    - some small improvements to the configurator, misc prompting glitches
    3.24 +    - 'sanitised' patches for binutils-2.17
    3.25 +    - patches for glibc-2.5
    3.26 +
    3.27 +More to come as they help.
     4.1 --- a/samples/samples.mk	Sun Jul 22 17:44:27 2007 +0000
     4.2 +++ b/samples/samples.mk	Sun Jul 22 21:29:42 2007 +0000
     4.3 @@ -20,7 +20,9 @@
     4.4  # How we do build one sample
     4.5  PHONY += $(CT_SAMPLES)
     4.6  $(CT_SAMPLES):
     4.7 +	@echo  'Configuring for "$@"'
     4.8  	@$(CT_NG) $(patsubst %,copy_config_%,$(@)) oldconfig
     4.9 +	@echo  'Execute "$(CT_NG) build" to build your toolchain'
    4.10  
    4.11  $(patsubst %,copy_config_%,$(CT_SAMPLES)):
    4.12  	@if [ -f $(CT_TOP_DIR)/samples/$(patsubst copy_config_%,%,$(@))/crosstool.config ]; then                    \