all: $(IMAGE_BIN) $(STR_BIN) so will makefile execute to output $(IMAGE_BIN) and $(STR_BIN) firstly, and then execute the commands of all?
时间: 2024-06-07 20:10:00 浏览: 103
Yes, that is correct. The makefile will execute the commands to generate $(IMAGE_BIN) and $(STR_BIN) first, and then move on to execute the commands under "all". The "all" target depends on $(IMAGE_BIN) and $(STR_BIN), so make will ensure that these targets are built before executing the commands under "all".
阅读全文