Sort $(MXE_TARGET_LIST) by triplets instead of lib types

Nothing in the Makefile is affected else than the generation of default
settings.mk.

Signed-off-by: Timothy Gu <timothygu99@gmail.com>
This commit is contained in:
Timothy Gu 2014-04-09 18:20:59 -07:00
parent e62b7438fd
commit d3adb06a13
1 changed files with 2 additions and 2 deletions

View File

@ -11,8 +11,8 @@ include $(EXT_DIR)/gmsl
MXE_TRIPLETS := i686-pc-mingw32 x86_64-w64-mingw32 i686-w64-mingw32
MXE_LIB_TYPES := static shared
MXE_TARGET_LIST := $(foreach LIB_TYPE,$(MXE_LIB_TYPES),\
$(addsuffix .$(LIB_TYPE),$(MXE_TRIPLETS)))
MXE_TARGET_LIST := $(foreach TRIPLET,$(MXE_TRIPLETS),\
$(addprefix $(TRIPLET).,$(MXE_LIB_TYPES)))
MXE_TARGETS := i686-pc-mingw32.static
DEFAULT_MAX_JOBS := 6