kconfig/kconfig.mk
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Wed Oct 22 16:56:23 2008 +0000 (2008-10-22)
changeset 959 955712a44ff0
parent 946 253df9d80065
child 1087 5be36a4b304d
permissions -rw-r--r--
Enhance the kconfig stuff build procedure:
- better allocate CFLAGS/LDFLAGS to object and dependency files
- only include the needed dependency files
- cleanly handle the kconfig/ check and creation
- use HOST_LD to link, not HOST_CC (even if both are set to 'gcc' for now)
- get rid of defoldconfig, it does not make much sense using it.

/trunk/kconfig/kconfig.mk | 110 66 44 0 ++++++++++++++++++++++++++++++++---------------------
1 file changed, 66 insertions(+), 44 deletions(-)
yann@1
     1
# ===========================================================================
yann@197
     2
# crosstool-NG configuration targets
yann@1
     3
# These targets are used from top-level makefile
yann@1
     4
yann@148
     5
# Derive the project version from, well, the project version:
yann@148
     6
export PROJECTVERSION=$(CT_VERSION)
yann@148
     7
yann@945
     8
# The place where the kconfig stuff lies
yann@926
     9
obj = kconfig
yann@926
    10
yann@926
    11
#-----------------------------------------------------------
yann@926
    12
# The configurators rules
yann@182
    13
yann@959
    14
configurators = menuconfig oldconfig
yann@946
    15
PHONY += $(configurators)
yann@945
    16
yann@946
    17
$(configurators): config_files
yann@946
    18
yann@946
    19
menuconfig: $(obj)/mconf
yann@959
    20
	@$(ECHO) "  CONF  $(KCONFIG_TOP)"
yann@940
    21
	$(SILENT)$< $(KCONFIG_TOP)
yann@1
    22
yann@946
    23
oldconfig: $(obj)/conf .config
yann@945
    24
	@$(ECHO) "  CONF  $(KCONFIG_TOP)"
yann@940
    25
	$(SILENT)$< -s $(KCONFIG_TOP)
yann@1
    26
yann@926
    27
#-----------------------------------------------------------
yann@1
    28
# Help text used by make help
yann@926
    29
yann@176
    30
help-config::
yann@333
    31
	@echo  '  menuconfig         - Update current config using a menu based program'
yann@333
    32
	@echo  '  oldconfig          - Update current config using a provided .config as base'
yann@1
    33
yann@926
    34
#-----------------------------------------------------------
yann@940
    35
# Hmmm! Cheesy build!
yann@940
    36
# Or: where I can unveil my make-fu... :-]
yann@1
    37
yann@940
    38
# Oh! Files not here are there, in fact! :-)
yann@940
    39
vpath %.c $(CT_LIB_DIR)
yann@940
    40
vpath %.h $(CT_LIB_DIR)
yann@1
    41
yann@940
    42
# What is the compiler?
yann@940
    43
HOST_CC ?= gcc -funsigned-char
yann@959
    44
HOST_LD ?= gcc
yann@959
    45
yann@959
    46
# Helpers
yann@959
    47
check_gettext = $(CT_LIB_DIR)/kconfig/check-gettext.sh
yann@959
    48
check_lxdialog = $(CT_LIB_DIR)/kconfig/lxdialog/check-lxdialog.sh
yann@959
    49
yann@959
    50
# Build flags
yann@959
    51
CFLAGS = 
yann@959
    52
LDFLAGS =
yann@182
    53
yann@943
    54
# Compiler flags to use gettext
yann@959
    55
INTL_CFLAGS = $(shell $(SHELL) $(check_gettext) $(HOST_CC) $(EXTRA_CFLAGS))
yann@943
    56
yann@940
    57
# Compiler and linker flags to use ncurses
yann@959
    58
NCURSES_CFLAGS = $(shell $(SHELL) $(check_lxdialog) -ccflags)
yann@959
    59
NCURSES_LDFLAGS = $(shell $(SHELL) $(check_lxdialog) -ldflags $(HOST_CC) $(LX_FLAGS) $(EXTRA_CFLAGS))
yann@182
    60
yann@959
    61
# Common source files
yann@959
    62
COMMON_SRC = kconfig/zconf.tab.c
yann@959
    63
COMMON_OBJ = $(patsubst %.c,%.o,$(COMMON_SRC))
yann@959
    64
COMMON_DEP = $(patsubst %.o,%.dep,$(COMMON_OBJ))
yann@959
    65
$(COMMON_OBJ) $(COMMON_DEP): CFLAGS += $(INTL_CFLAGS)
yann@959
    66
yann@959
    67
# lxdialog source files
yann@959
    68
LX_SRC = $(patsubst $(CT_LIB_DIR)/%,%,$(wildcard $(CT_LIB_DIR)/kconfig/lxdialog/*.c))
yann@959
    69
LX_OBJ = $(patsubst %.c,%.o,$(LX_SRC))
yann@959
    70
LX_DEP = $(patsubst %.o,%.dep,$(LX_OBJ))
yann@959
    71
$(LX_OBJ) $(LX_DEP): CFLAGS += $(NCURSES_CFLAGS) $(INTL_CFLAGS)
yann@816
    72
yann@940
    73
# What's needed to build 'conf'
yann@959
    74
conf_SRC = kconfig/conf.c
yann@959
    75
conf_OBJ = $(patsubst %.c,%.o,$(conf_SRC))
yann@959
    76
conf_DEP = $(patsubst %.o,%.dep,$(conf_OBJ))
yann@959
    77
$(conf_OBJ) $(conf_DEP): CFLAGS += $(INTL_CFLAGS)
yann@816
    78
yann@940
    79
# What's needed to build 'mconf'
yann@959
    80
mconf_SRC = kconfig/mconf.c
yann@940
    81
mconf_OBJ = $(patsubst %.c,%.o,$(mconf_SRC))
yann@959
    82
mconf_DEP = $(patsubst %.c,%.dep,$(mconf_SRC))
yann@959
    83
$(mconf_OBJ) $(mconf_DEP): CFLAGS += $(NCURSES_CFLAGS) $(INTL_CFLAGS)
yann@959
    84
$(obj)/mconf: LDFLAGS += $(NCURSES_LDFLAGS)
yann@959
    85
yann@959
    86
# These are generated files:
yann@959
    87
ALL_OBJS = $(sort $(COMMON_OBJ) $(LX_OBJ) $(conf_OBJ) $(mconf_OBJ))
yann@959
    88
ALL_DEPS = $(sort $(COMMON_DEP) $(LX_DEP) $(conf_DEP) $(mconf_DEP))
yann@1
    89
yann@940
    90
# Cheesy auto-dependencies
yann@946
    91
# Only parse the following if a configurator was called, to avoid building
yann@946
    92
# dependencies when not needed (eg. list-steps, list-samples...)
yann@946
    93
# We must be carefull what we enclose, because we need some of the variable
yann@946
    94
# definitions for clean (and distclean) at least.
yann@946
    95
# Just protecting the "-include $(DEPS)" line should be sufficient.
yann@946
    96
yann@946
    97
ifneq ($(strip $(MAKECMDGOALS)),)
yann@946
    98
ifneq ($(strip $(filter $(configurators),$(MAKECMDGOALS))),)
yann@946
    99
yann@959
   100
DEPS = $(COMMON_DEP)
yann@959
   101
ifneq ($(strip $(filter oldconfig,$(MAKECMDGOALS))),)
yann@959
   102
DEPS += $(conf_DEP)
yann@959
   103
endif
yann@959
   104
ifneq ($(strip $(filter menuconfig,$(MAKECMDGOALS))),)
yann@959
   105
DEPS += $(mconf_DEP) $(LX_DEP)
yann@959
   106
endif
yann@959
   107
yann@945
   108
-include $(DEPS)
yann@940
   109
yann@946
   110
endif # MAKECMDGOALS contains a configurator rule
yann@946
   111
endif # MAKECMDGOALS != ""
yann@946
   112
yann@959
   113
# Each .o or .dep *can not* directly depend on kconfig/, because kconfig can
yann@959
   114
# be touched during the build (who's touching it, btw?) so each .o or .dep
yann@959
   115
# would be re-built when it sould not be.
yann@959
   116
# So manually check for presence of $(obj) (ie. kconfig), and only mkdir
yann@959
   117
# if needed. After all, that's not so bad...
yann@959
   118
# mkdir $(obj)/lxdialog, because we need it, and incidentally, that
yann@959
   119
# also creates $(obj).
yann@959
   120
define check_kconfig_dir
yann@940
   121
	$(SILENT)if [ ! -d $(obj)/lxdialog ]; then  \
yann@940
   122
	   $(ECHO) "  MKDIR $(obj)";           \
yann@940
   123
	   mkdir -p $(obj)/lxdialog;        \
yann@940
   124
	 fi
yann@959
   125
endef
yann@959
   126
yann@959
   127
# Build the dependency for C files
yann@959
   128
%.dep: %.c $(CT_LIB_DIR)/kconfig/kconfig.mk
yann@959
   129
	$(check_kconfig_dir)
yann@940
   130
	@$(ECHO) "  DEP   $@"
yann@943
   131
	$(SILENT)$(HOST_CC) $(CFLAGS) $(EXTRA_CFLAGS) -MM $< |sed -r -e 's|([^:]+.o)( *:+)|$(<:.c=.o) $@\2|;' >$@
yann@940
   132
yann@959
   133
# Build C files
yann@940
   134
%.o: %.c $(CT_LIB_DIR)/kconfig/kconfig.mk
yann@959
   135
	$(check_kconfig_dir)
yann@940
   136
	@$(ECHO) "  CC    $@"
yann@943
   137
	$(SILENT)$(HOST_CC) $(CFLAGS) $(EXTRA_CFLAGS) -o $@ -c $<
yann@940
   138
yann@959
   139
# Actual link
yann@959
   140
$(obj)/mconf: $(COMMON_OBJ) $(LX_OBJ) $(mconf_OBJ)
yann@940
   141
	@$(ECHO) '  LD    $@'
yann@959
   142
	$(SILENT)$(HOST_LD) $(LDFLAGS) $(EXTRA_LDFLAGS) -o $@ $^
yann@940
   143
yann@959
   144
$(obj)/conf: $(COMMON_OBJ) $(conf_OBJ)
yann@940
   145
	@$(ECHO) '  LD    $@'
yann@959
   146
	$(SILENT)$(HOST_LD) $(LDFLAGS) $(EXTRA_LDFLAGS) -o $@ $^
yann@1
   147
yann@926
   148
#-----------------------------------------------------------
yann@926
   149
# Cleaning up the mess...
yann@926
   150
yann@1
   151
clean::
yann@940
   152
	@$(ECHO) "  CLEAN kconfig"
yann@959
   153
	$(SILENT)rm -f kconfig/{,m}conf $(ALL_OBJS) $(ALL_DEPS)
yann@940
   154
	$(SILENT)rmdir --ignore-fail-on-non-empty kconfig{/lxdialog,} 2>/dev/null || true