What does symbol | mean in dependency list, e.g.
foobar: foo | bar
do_something ....
Where foo and bar are targets generated by makefile.
What does symbol | mean in dependency list, e.g.
foobar: foo | bar
do_something ....
Where foo and bar are targets generated by makefile.
See the section on order-only prerequisites in the GNU make manual.
Basically this means that bar
must be built before foobar
, but that foobar
won't be considered out of date because bar
is newer than foobar
.