mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 12:16:00 +00:00
Two small changes:
+ document the difference between "A=foo make ..." and "make A=foo ..." and suggest using COPTS/LDOPTS if you need to use the second form to pass compiler and loader flags; + define only in one place the environment used to build stuff in menuselect/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@93558 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
25
Makefile
25
Makefile
@@ -20,11 +20,20 @@
|
|||||||
# SOLINK - linker flags used only for creating shared objects (.so files),
|
# SOLINK - linker flags used only for creating shared objects (.so files),
|
||||||
# used for all .so links
|
# used for all .so links
|
||||||
#
|
#
|
||||||
# Default values for ASTCFLAGS and ASTLDFLAGS can be specified in the
|
# Initial values for ASTCFLAGS and ASTLDFLAGS can be specified in the
|
||||||
# environment when running make, as follows:
|
# environment when running make, as follows:
|
||||||
#
|
#
|
||||||
# $ ASTCFLAGS="-Werror" make
|
# $ ASTCFLAGS="-Werror" make ...
|
||||||
|
#
|
||||||
|
# note that this is different from
|
||||||
|
#
|
||||||
|
# $ make ASTCFLAGS="-Werror" ...
|
||||||
|
#
|
||||||
|
# If you need to pass compiler/linker flags as 'make' variables, please use
|
||||||
|
#
|
||||||
|
# $ make COPTS="..." LDOPTS="..." ...
|
||||||
|
#
|
||||||
|
#
|
||||||
# You can add the path of local module subdirs from the command line with
|
# You can add the path of local module subdirs from the command line with
|
||||||
# make LOCAL_MOD_SUBDIRS= ....
|
# make LOCAL_MOD_SUBDIRS= ....
|
||||||
|
|
||||||
@@ -782,15 +791,17 @@ menuselect: menuselect/menuselect menuselect-tree
|
|||||||
gmenuselect: menuselect/gmenuselect menuselect-tree
|
gmenuselect: menuselect/gmenuselect menuselect-tree
|
||||||
-@menuselect/gmenuselect $(GLOBAL_MAKEOPTS) $(USER_MAKEOPTS) menuselect.makeopts && (echo "menuselect changes saved!"; rm -f channels/h323/Makefile.ast main/asterisk) || echo "menuselect changes NOT saved!"
|
-@menuselect/gmenuselect $(GLOBAL_MAKEOPTS) $(USER_MAKEOPTS) menuselect.makeopts && (echo "menuselect changes saved!"; rm -f channels/h323/Makefile.ast main/asterisk) || echo "menuselect changes NOT saved!"
|
||||||
|
|
||||||
|
# options for make in menuselect/
|
||||||
|
MAKE_MENUSELECT=CC="$(HOST_CC)" CXX="$(CXX)" LD="" AR="" RANLIB="" CFLAGS="" $(MAKE) -C menuselect CONFIGURE_SILENT="--silent"
|
||||||
|
|
||||||
menuselect/menuselect: menuselect/makeopts
|
menuselect/menuselect: menuselect/makeopts
|
||||||
echo "doing menuselect with $(HOST_CC)"
|
$(MAKE_MENUSELECT)
|
||||||
@CC="$(HOST_CC)" LD="" AR="" RANLIB="" CFLAGS="" $(MAKE) -C menuselect CONFIGURE_SILENT="--silent"
|
|
||||||
|
|
||||||
menuselect/gmenuselect: menuselect/makeopts
|
menuselect/gmenuselect: menuselect/makeopts
|
||||||
@CC="$(HOST_CC)" CXX="$(CXX)" LD="" AR="" RANLIB="" CFLAGS="" $(MAKE) -C menuselect gmenuselect CONFIGURE_SILENT="--silent"
|
$(MAKE_MENUSELECT) gmenuselect
|
||||||
|
|
||||||
menuselect/makeopts:
|
menuselect/makeopts:
|
||||||
@CC="$(HOST_CC)" CXX="$(CXX)" LD="" AR="" RANLIB="" CFLAGS="" $(MAKE) -C menuselect makeopts CONFIGURE_SILENT="--silent"
|
$(MAKE_MENUSELECT) makeopts
|
||||||
|
|
||||||
menuselect-tree: $(foreach dir,$(filter-out main,$(MOD_SUBDIRS)),$(wildcard $(dir)/*.c) $(wildcard $(dir)/*.cc)) build_tools/cflags.xml sounds/sounds.xml build_tools/embed_modules.xml configure
|
menuselect-tree: $(foreach dir,$(filter-out main,$(MOD_SUBDIRS)),$(wildcard $(dir)/*.c) $(wildcard $(dir)/*.cc)) build_tools/cflags.xml sounds/sounds.xml build_tools/embed_modules.xml configure
|
||||||
@echo "Generating input for menuselect ..."
|
@echo "Generating input for menuselect ..."
|
||||||
|
Reference in New Issue
Block a user