Lines Matching defs:to
8 .SUFFIXES: .from .to
10 all: use-inference.to
15 .from.to: verbose
26 # The main target is "all", which depends on "use-inference.to".
27 # The inference connects the .from to the .to file, otherwise make
28 # would not know that the .from file would need to be built.
32 # After this, make stops since it doesn't know how to make the .to file.
33 # This is strange since make definitely knows about the .from.to suffix
34 # inference rule. But it seems to ignore it, maybe because it doesn't
37 # Until 2020-12-07, despite the error message "don't know how to make",