I see a build rule like the following.
a: b c | d
some_rule
For example:
result.xml: parser.py data0.txt | data1.txt
python parser.py data0.txt data1.txt
So, I am wondering, how would the above be different if the OR operator "|" was not used at all. What is the use of an OR operator in dependency list?