aboutsummaryrefslogtreecommitdiff
path: root/config/config.mk
Commit message (Collapse)AuthorAgeFilesLines
* config: allow libc selection in backend modeYann E. MORIN"2010-04-011-1/+1
| | | | | In backend mode, allow the upper-layer build system to force the C library selection.
* config: do not force setting kernel and archYann E. MORIN"2010-04-011-1/+7
| | | | | In backend mode, only enforce the arch and/or kernel selection if the upper-layer build system effectively forces the selection.
* config: fix style issues when source-ing filesYann E. MORIN"2010-03-291-3/+3
| | | | | Always enclose the sourced file between double-quotes (purely for consistency; enclosing or not are both allowed by the kconfig language).
* config: hide arch and kernel selection when used as a backendYann E. MORIN"2010-03-291-7/+11
| | | | | When used as a backend, it is the responsibility of the upper-layer build system to set the target architecture and kernel.
* tools: move sstrip to the binary utilities menuYann E. MORIN"2010-03-171-11/+4
| | | | | | sstrip is now alone in its 'tools' menu, and we will probably never gain any other 'tool'. Besides, sstrip is just strip, but a little bit more agressive, so it deserves going to the 'binary utilities' menu.
* Merge r1432:1437 from /branches/newlib into /trunk :Yann E. MORIN"2009-03-261-12/+8
| | | | | | | | | | | | | | | | | | | - under bare-metal, the user is responsible for providing a gdbserver stub (r1433) - install a CT_TARGET-cc -> CT_TARGET-gcc symlink for the core gcc (r1434) - allow broader dependency in generated config files (r1435, r1436) - prepare C library menuconfig for using a C library under bare-metal (r1437) /trunk/scripts/build/cc/gcc.sh | 4 4 0 0 ++++ /trunk/config/debug/gdb.in | 5 5 0 0 +++++ /trunk/config/libc/glibc.in | 1 1 0 0 + /trunk/config/libc/uClibc.in | 1 1 0 0 + /trunk/config/libc/eglibc.in | 2 1 1 0 +- /trunk/config/config.mk | 20 8 12 0 ++++++++------------ /trunk/config/arch/sh.in | 2 1 1 0 +- /trunk/config/arch/ia64.in | 2 1 1 0 +- /trunk/config/arch/powerpc64.in | 2 1 1 0 +- /trunk/config/libc.in | 4 0 4 0 ---- 10 files changed, 23 insertions(+), 20 deletions(-)
* Make the choices in generated config file (in config.gen) look better.Yann E. MORIN"2009-03-111-1/+1
| | | | | /trunk/config/config.mk | 2 1 1 0 +- 1 file changed, 1 insertion(+), 1 deletion(-)
* Add infrastructure to use common config files for generated config files.Yann E. MORIN"2009-01-311-0/+4
| | | | | | | /trunk/config/libc/glibc-eglibc.in-common | 4 4 0 0 ++++ /trunk/config/config.mk | 4 4 0 0 ++++ /trunk/config/libc.in | 7 0 7 0 ------- 3 files changed, 8 insertions(+), 7 deletions(-)
* Fix white space damage after switching to using paths found by ./configure.Yann E. MORIN"2009-01-271-52/+52
| | | | | | /trunk/samples/samples.mk | 2 1 1 0 /trunk/config/config.mk | 104 52 52 0 ++++++++++++++++++++++++++-------------------------- 2 files changed, 53 insertions(+), 53 deletions(-)
* Use the paths found by ./configure in the ct-ng.in makefile script and its ↵Yann E. MORIN"2009-01-261-5/+5
| | | | | | | | | | fragments. /trunk/kconfig/kconfig.mk | 2 1 1 0 +- /trunk/samples/samples.mk | 18 9 9 0 +++++++++--------- /trunk/config/config.mk | 10 5 5 0 +++++----- /trunk/ct-ng.in | 22 13 9 0 +++++++++++++--------- 4 files changed, 28 insertions(+), 24 deletions(-)
* Enhance the make fragments:Yann E. MORIN"2008-10-271-1/+1
| | | | | | | | | | | | - comment the different parts - re-order the code so that it is homogeneous amogst fragments - eye-candy in some existing comments /trunk/tools/tools.mk | 17 15 2 0 +++++++++++++++-- /trunk/steps.mk | 38 26 12 0 ++++++++++++++++++++++++++------------ /trunk/samples/samples.mk | 41 28 13 0 ++++++++++++++++++++++++++++------------- /trunk/config/config.mk | 2 1 1 0 +- 4 files changed, 70 insertions(+), 28 deletions(-)
* Extract the config files related stuff from the kconfig stuffYann E. MORIN"2008-10-181-0/+176
- create config/config.mk, with all the config.gen/ rules - the only common points between config files and configurators: - the top-level config file to include, stored in KCONFIG_TOP - the config_file rules, which makes config files available to configurators - dependency-files are renamed from %.d to %.dep (.d is reserved for directories) - a few eye-candy here and there /trunk/kconfig/kconfig.mk | 184 12 172 0 +++-------------------------------------------------- /trunk/config/config.mk | 118 9 109 0 +++------------------------------- /trunk/ct-ng.in | 1 1 0 0 + 3 files changed, 22 insertions(+), 281 deletions(-)