Author: jcrouse Date: 2007-11-29 16:56:37 +0100 (Thu, 29 Nov 2007) New Revision: 65
Modified: buildrom-devel/Makefile Log: [BUILDROM] Add targets for mconf and lxdialog
There isn't any need to be running make for mconf and lxdialog every time we run menuconfig - we invoke the power of Make and add the two utilities as dependencies.
Signed-off-by: Jordan Crouse jordan.crouse@amd.com Acked-by: Peter Stuge peter@stuge.se
Modified: buildrom-devel/Makefile =================================================================== --- buildrom-devel/Makefile 2007-11-28 18:49:11 UTC (rev 64) +++ buildrom-devel/Makefile 2007-11-29 15:56:37 UTC (rev 65) @@ -86,6 +86,13 @@ $(KCONFIG_DIR)/conf: make -C $(KCONFIG_DIR) conf
+$(KCONFIG_DIR)/mconf: + make -C $(KCONFIG_DIR) mconf + +$(KCONFIG_DIR)/lxdialog/lxdialog: + make -C $(KCONFIG_DIR)/lxdialog lxdialog + + textconfig: $(KCONFIG_DIR)/conf @$(KCONFIG_DIR)/conf $(BASE_DIR)/Config.in
@@ -95,9 +102,7 @@ defconfig: $(KCONFIG_DIR)/conf @$(KCONFIG_DIR)/conf -d $(BASE_DIR)/Config.in
-menuconfig: - @make -C $(KCONFIG_DIR)/lxdialog lxdialog - @make -C $(KCONFIG_DIR) mconf +menuconfig: $(KCONFIG_DIR)/lxdialog/lxdialog $(KCONFIG_DIR)/mconf @$(KCONFIG_DIR)/mconf $(BASE_DIR)/Config.in
endif