kconfig/Makefile
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue May 08 17:48:32 2007 +0000 (2007-05-08)
changeset 78 c3868084d81a
parent 54 7498a8d4b6e5
child 88 f67b52e42fd1
permissions -rw-r--r--
Huge fixes to glibc build, so that we can build at least (and at last):
- use ports addon even when installing headers,
- use optimisation (-O) when installing headers, to avoid unnecessary warnings (thanks Robert P. J. DAY for pointing this out!),
- lowest kernel version to use is only X.Y.Z, not X.Y.Z.T,
- a bit of preparations for NPTL (RSN I hope),
- fix fixing the linker scripts (changing the backup file is kind of useless and stupid);

Shut uClibc finish step: there really is nothing to do;

Add a patch for glibc-2.3.6 weak aliases handling on some archs (ARM and ALPHA at least);

Did not catch the make errors: fixed the pattern matching in scripts/functions;

Introduce a new log level, ALL:
- send components' build messages there,
- DEBUG log level is destined only for crosstool-NG debug messages,
- migrate sub-actions to use appropriate log levels;

Update the armeb-unknown-linux-gnu sample:
- it builds!
- uses gcc-4.0.4 and glibc-2.3.6,
- updated to latest config options set.
     1 # ===========================================================================
     2 # crosstool-ng configuration targets
     3 # These targets are used from top-level makefile
     4 
     5 KCONFIG_TOP = config/config.in
     6 obj = ./kconfig
     7 PHONY += clean help oldconfig menuconfig config silentoldconfig \
     8 	randconfig allyesconfig allnoconfig allmodconfig defconfig
     9 
    10 # Darwin (MacOS-X) does not have proper libintl support
    11 ifeq ($(shell uname -s),Darwin)
    12 KBUILD_NO_NLS:=1
    13 endif
    14 
    15 ifneq ($(KBUILD_NO_NLS),)
    16 CFLAGS += -DKBUILD_NO_NLS
    17 endif
    18 
    19 menuconfig: $(obj)/mconf
    20 	@$< $(KCONFIG_TOP)
    21 
    22 config: $(obj)/conf
    23 	@$< $(KCONFIG_TOP)
    24 
    25 oldconfig: $(obj)/conf
    26 	@$< -s $(KCONFIG_TOP)
    27 
    28 # Help text used by make help
    29 help::
    30 	@echo  'General purpose configuration targets:'
    31 	@echo  '  config         - Update current config using a line-oriented program'
    32 	@echo  '  menuconfig     - Update current config using a menu based program'
    33 	@echo  '  oldconfig      - Update current config using a provided .config as base'
    34 	@# saveconfig is listed here for homogeneity, but implemented in samples/Makefile
    35 	@echo  '  saveconfig     - Save current config as a preconfigured target'
    36 	@echo  ''
    37 
    38 # Cheesy build
    39 
    40 SHIPPED = kconfig/zconf.tab.c kconfig/lex.zconf.c kconfig/zconf.hash.c
    41 
    42 %.c: %.c_shipped
    43 	@ln -s $(notdir $<) $@
    44 
    45 kconfig/mconf: $(SHIPPED) kconfig/mconf.c
    46 	@$(HOST_CC) $(CFLAGS) -o $@ kconfig/{mconf.c,zconf.tab.c,lxdialog/*.c} \
    47 		-lcurses "-DCURSES_LOC=<ncurses.h>"
    48 
    49 kconfig/conf: $(SHIPPED) kconfig/conf.c
    50 	@$(HOST_CC) $(CFLAGS) -o $@ kconfig/{conf.c,zconf.tab.c}
    51 
    52 clean::
    53 	@rm -f $(wildcard kconfig/*zconf*.c) kconfig/{conf,mconf}