相关文章推荐
风流倜傥的炒粉  ·  python designer ...·  7 月前    · 
打酱油的核桃  ·  EnableWebSocketMessage ...·  1 年前    · 
聪明的冰棍  ·  【原创】Python ...·  1 年前    · 
Collectives™ on Stack Overflow

Find centralized, trusted content and collaborate around the technologies you use most.

Learn more about Collectives

Teams

Q&A for work

Connect and share knowledge within a single location that is structured and easy to search.

Learn more about Teams

$^ is the set of dependent files used to build something else.

$@ is the name of the target to be built.

See http://www.gnu.org/software/make/manual/html_node/Automatic-Variables.html

$@ is the name of the target. This is quite useful when the target is a pattern rather than fixed.

$^ is the name of the prerequisite that caused the rule to execute.