Makefile: make all-bin have some bug
Closed this issue · 1 comments
eatradish commented
all-bin: all build
in Makefile, but in fact, make will have the same priority for all
and build
in parallel working mode.
How to reproduce
make -j2 all-bin
FranklinYu commented
Do you mean that all
depends on build
? Then you should mark build
as a dependency of all
instead of manually calling $(MAKE)
.