so if i input make all, then the makefile will execute the all target firstly?
时间: 2024-05-31 18:12:46 浏览: 73
Yes, that's correct! If you run the command `make all`, the Makefile will execute the commands associated with the `all` target first. The `all` target is usually used to specify all the targets that should be built when the user types `make` without any arguments.
阅读全文