diff options
author | Rob Landley <rob@landley.net> | 2008-01-19 17:08:39 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2008-01-19 17:08:39 -0600 |
commit | 2896480c4918f2accccb8301bec457a7bff7377e (patch) | |
tree | 622527b0fcb9b5ed9d8b7fb50db316dc00111b2c /kconfig | |
parent | 58ecc3e589c2edc0ef4f33d4419b0b2e7ac6a83d (diff) | |
download | toybox-2896480c4918f2accccb8301bec457a7bff7377e.tar.gz |
Zap toys/Config.in and instead create generated/Config.in from contents of
toys/*.c. Move relevant info into comment at the top of each toys/*.c. Also
convert more of Makefile into a thin wrapper around shell scripts that actually
do the work. (Makefile is only still there for the user interface.)
Diffstat (limited to 'kconfig')
-rw-r--r-- | kconfig/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kconfig/Makefile b/kconfig/Makefile index 7fc3faca..7eaee955 100644 --- a/kconfig/Makefile +++ b/kconfig/Makefile @@ -8,28 +8,28 @@ obj = ./kconfig PHONY += clean help oldconfig menuconfig config silentoldconfig \ randconfig allyesconfig allnoconfig allmodconfig defconfig -menuconfig: $(obj)/mconf +menuconfig: $(obj)/mconf $(KCONFIG_TOP) $< $(KCONFIG_TOP) -config: $(obj)/conf +config: $(obj)/conf $(KCONFIG_TOP) $< $(KCONFIG_TOP) -oldconfig: $(obj)/conf +oldconfig: $(obj)/conf $(KCONFIG_TOP) $< -o $(KCONFIG_TOP) -silentoldconfig: $(obj)/conf +silentoldconfig: $(obj)/conf $(KCONFIG_TOP) $< -s $(KCONFIG_TOP) -randconfig: $(obj)/conf +randconfig: $(obj)/conf $(KCONFIG_TOP) $< -r $(KCONFIG_TOP) -allyesconfig: $(obj)/conf +allyesconfig: $(obj)/conf $(KCONFIG_TOP) $< -y $(KCONFIG_TOP) -allnoconfig: $(obj)/conf +allnoconfig: $(obj)/conf $(KCONFIG_TOP) $< -n $(KCONFIG_TOP) -defconfig: $(obj)/conf +defconfig: $(obj)/conf $(KCONFIG_TOP) $< -D /dev/null $(KCONFIG_TOP) # Help text used by make help |