Add sort
for always same build order
This commit is contained in:
parent
8e2ad8178d
commit
8c68d2210d
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -8,8 +8,8 @@ MAKE=$(shell which make)
|
|||
BASH=$(shell which bash)
|
||||
CARGO=$(shell which cargo)
|
||||
|
||||
BINS=$(shell find -maxdepth 1 -name "imag-*" -type d)
|
||||
LIBS=$(shell find -maxdepth 1 -name "libimag*" -type d)
|
||||
BINS=$(shell find -maxdepth 1 -name "imag-*" -type d | sort)
|
||||
LIBS=$(shell find -maxdepth 1 -name "libimag*" -type d | sort)
|
||||
|
||||
BIN_TARGETS=$(patsubst imag-%,,$(BINS))
|
||||
BIN_TARGET_TESTS=$(foreach x,$(BIN_TARGETS),$(x)-test)
|
||||
|
|
Loading…
Reference in a new issue