Closed eatradish closed 2 years ago
all-bin: all build in Makefile, but in fact, make will have the same priority for all and build in parallel working mode.
all-bin: all build
all
build
make -j2 all-bin
Do you mean that all depends on build? Then you should mark build as a dependency of all instead of manually calling $(MAKE).
$(MAKE)
all-bin: all build
in Makefile, but in fact, make will have the same priority forall
andbuild
in parallel working mode.How to reproduce