From 2896480c4918f2accccb8301bec457a7bff7377e Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sat, 19 Jan 2008 17:08:39 -0600 Subject: 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.) --- kconfig/Makefile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'kconfig/Makefile') 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 -- cgit v1.2.3