< prev index next >

make/common/MakeBase.gmk

Print this page




 974 # properly.
 975 CommaList = \
 976   $(strip \
 977       $(subst $(COMMA)$(COMMA),$(COMMA),$(subst $(SPACE),$(COMMA),$(strip $1))) \
 978   )
 979 
 980 ################################################################################
 981 # Converts a space separated list to a colon separated list.
 982 #
 983 # Replacing double-colon with a single colon is to workaround the issue with
 984 # some version of make on windows that doesn't substitute spaces with one colon
 985 # properly.
 986 ColonList = \
 987   $(strip \
 988       $(subst ::,:,$(subst $(SPACE),:,$(strip $1))) \
 989   )
 990 
 991 ################################################################################
 992 
 993 # Hook to include the corresponding custom file, if present.
 994 $(eval $(call IncludeCustomExtension, , common/MakeBase.gmk))
 995 
 996 endif # _MAKEBASE_GMK


 974 # properly.
 975 CommaList = \
 976   $(strip \
 977       $(subst $(COMMA)$(COMMA),$(COMMA),$(subst $(SPACE),$(COMMA),$(strip $1))) \
 978   )
 979 
 980 ################################################################################
 981 # Converts a space separated list to a colon separated list.
 982 #
 983 # Replacing double-colon with a single colon is to workaround the issue with
 984 # some version of make on windows that doesn't substitute spaces with one colon
 985 # properly.
 986 ColonList = \
 987   $(strip \
 988       $(subst ::,:,$(subst $(SPACE),:,$(strip $1))) \
 989   )
 990 
 991 ################################################################################
 992 
 993 # Hook to include the corresponding custom file, if present.
 994 $(eval $(call IncludeCustomExtension, common/MakeBase.gmk))
 995 
 996 endif # _MAKEBASE_GMK
< prev index next >