## Automatic variables See [the manual](https://www.gnu.org/software/make/manual/html_node/Automatic-Variables.html) ```make $@ -- target name $% -- target member name $< -- first prerequisite $? -- all prerequisites newer than the target $^ -- all prerequisites $+ -- all prerequisites including duplicates, in order ```