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.