You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When multiple pattern rules exist, GNU Make prefers the more specific rule over more general ones, that is to say, the pattern rule with the shortest stem (the shortest string matched by %). See the last few sentences of https://www.gnu.org/software/make/manual/html_node/Pattern-Match.html
In the following example, GNU make uses the combined sort | gzip rule, whereas biomake uses the separate sort and gzip rules.
When multiple pattern rules exist, GNU Make prefers the more specific rule over more general ones, that is to say, the pattern rule with the shortest stem (the shortest string matched by
%
). See the last few sentences of https://www.gnu.org/software/make/manual/html_node/Pattern-Match.htmlIn the following example, GNU
make
uses the combinedsort | gzip
rule, whereasbiomake
uses the separatesort
andgzip
rules.The workaround in this case is to put the
%.sort.txt.gz: %.txt
rule above the other two rules.The text was updated successfully, but these errors were encountered: