diff options
author | Rob Landley <rob@landley.net> | 2006-11-01 22:19:34 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-11-01 22:19:34 -0500 |
commit | 1f24e8080858e62794ba4d2869a3ae1e383e47e7 (patch) | |
tree | b593a9289b54c00ed5663fc6bafe3fa14e79fa4a /kconfig/Makefile | |
parent | 52fb04274b3491fdfe91b2e5acc23dc3f3064a86 (diff) | |
parent | 6ccb1b7897a12ccec511f60e41e8f54c81fcdd6d (diff) | |
download | toybox-1f24e8080858e62794ba4d2869a3ae1e383e47e7.tar.gz |
The darn thing accidentally created a branch. I had to copy a half-dozen
files to temporary locations to get them out of the way of the merge, and
the next checkin will be putting them _back_. This commit is entirely to
humor mercurial, and if I could figure out how to avoid getting it in this
weird state, I would.
Diffstat (limited to 'kconfig/Makefile')
-rw-r--r-- | kconfig/Makefile | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/kconfig/Makefile b/kconfig/Makefile new file mode 100644 index 00000000..53857de6 --- /dev/null +++ b/kconfig/Makefile @@ -0,0 +1,62 @@ +# =========================================================================== +# Kernel configuration targets +# These targets are used from top-level makefile + +KCONFIG_TOP = Config.in +obj = ./kconfig +PHONY += clean help oldconfig menuconfig config silentoldconfig \ + randconfig allyesconfig allnoconfig allmodconfig defconfig + +menuconfig: $(obj)/mconf + $< $(KCONFIG_TOP) + +config: $(obj)/conf + $< $(KCONFIG_TOP) + +oldconfig: $(obj)/conf + $< -o $(KCONFIG_TOP) + +silentoldconfig: $(obj)/conf + $< -s $(KCONFIG_TOP) + +randconfig: $(obj)/conf + $< -r $(KCONFIG_TOP) + +allyesconfig: $(obj)/conf + $< -y $(KCONFIG_TOP) + +allnoconfig: $(obj)/conf + $< -n $(KCONFIG_TOP) + +defconfig: $(obj)/conf + $< -d $(KCONFIG_TOP) + +# Help text used by make help +help: + @echo ' config - Update current config utilising a line-oriented program' + @echo ' menuconfig - Update current config utilising a menu based program' + @echo ' oldconfig - Update current config utilising a provided .config as base' + @echo ' silentoldconfig - Same as oldconfig, but quietly' + @echo ' randconfig - New config with random answer to all options' + @echo ' defconfig - New config with default answer to all options' + @echo ' allyesconfig - New config where all options are accepted with yes' + @echo ' allnoconfig - New config where all options are answered with no' + +# Cheesy build + +SHIPPED = kconfig/zconf.tab.c kconfig/lex.zconf.c kconfig/zconf.hash.c + +%.c: %.c_shipped + @ln -s $(notdir $<) $@ + +gen_config.h: .config + +kconfig/mconf: $(SHIPPED) + $(CC) -o $@ kconfig/{mconf.c,zconf.tab.c,lxdialog/*.c} \ + -lcurses "-DCURSES_LOC=<ncurses.h>" + +kconfig/conf: $(SHIPPED) + $(CC) -o $@ kconfig/{conf.c,zconf.tab.c} + +clean:: + rm -f $(wildcard kconfig/*zconf*.c) kconfig/{conf,mconf} |