From 615d69cc61c01e049b842c295ffa4cf11e11eaeb Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Sat, 28 Jun 2008 14:34:07 +0000 Subject: use batch-mode (no user interface) menuselect for --check-deps operations move automatic user interface selection for menuselect to this Makefile git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@126152 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- Makefile | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 869d8399a..3dbadc07d 100644 --- a/Makefile +++ b/Makefile @@ -73,12 +73,12 @@ export PROC # Processor type export NOISY_BUILD # Used in Makefile.rules export MENUSELECT_CFLAGS # Options selected in menuselect. export AST_DEVMODE # Set to "yes" for additional compiler - # and runtime checks + # and runtime checks export SOLINK # linker flags for shared objects export STATIC_BUILD # Additional cflags, set to -static - # for static builds. Probably - # should go directly to ASTLDFLAGS + # for static builds. Probably + # should go directly to ASTLDFLAGS #--- paths to various commands export CC @@ -826,8 +826,14 @@ gmenuconfig: gmenuselect nmenuconfig: nmenuselect -menuselect: menuselect/menuselect menuselect-tree - -@menuselect/menuselect menuselect.makeopts $(GLOBAL_MAKEOPTS) $(USER_MAKEOPTS) && (echo "menuselect changes saved!"; rm -f channels/h323/Makefile.ast main/asterisk) || echo "menuselect changes NOT saved!" +menuselect: menuselect/cmenuselect menuselect/nmenuselect menuselect/gmenuselect + @if [ -x menuselect/nmenuselect ]; then \ + $(MAKE) nmenuselect; \ + elif [ -x menuselect/cmenuselect ]; then \ + $(MAKE) cmenuselect; \ + elif [ -x menuselect/gmenuselect ]; then \ + $(MAKE) gmenuselect; \ + fi cmenuselect: menuselect/cmenuselect menuselect-tree -@menuselect/cmenuselect menuselect.makeopts $(GLOBAL_MAKEOPTS) $(USER_MAKEOPTS) && (echo "menuselect changes saved!"; rm -f channels/h323/Makefile.ast main/asterisk) || echo "menuselect changes NOT saved!" @@ -842,7 +848,7 @@ nmenuselect: menuselect/nmenuselect menuselect-tree MAKE_MENUSELECT=CC="$(HOST_CC)" CXX="$(CXX)" LD="" AR="" RANLIB="" CFLAGS="" $(MAKE) -C menuselect CONFIGURE_SILENT="--silent" menuselect/menuselect: menuselect/makeopts - $(MAKE_MENUSELECT) + $(MAKE_MENUSELECT) menuselect menuselect/cmenuselect: menuselect/makeopts $(MAKE_MENUSELECT) cmenuselect -- cgit v1.2.3