Building with Rake
Rule Limitations
Rules will only do one level of inference
rule
".c"
=>
[".y"]
do
|t| yacc(t.source)
end
rule
".o"
=>
[".c"]
do
|t| compile_c(t.source)
end
If
lex.y
exists … Rake will
not
Build
lex.c
from
lex.y
and
lex.o
from
lex.c
.
Copyright 2003 by Jim Weirich (
Some Rights Reserved
)