32 lines
449 B
Text
32 lines
449 B
Text
(ocamllex lexer)
|
|
|
|
(rule
|
|
(deps
|
|
(:< debug.ml))
|
|
(targets debug.out)
|
|
(action
|
|
(with-stdout-to
|
|
%{targets}
|
|
(run %{bin:cppo} %{<}))))
|
|
|
|
(rule
|
|
(deps
|
|
(:< french.ml))
|
|
(targets french.out)
|
|
(action
|
|
(with-stdout-to
|
|
%{targets}
|
|
(run %{bin:cppo} %{<}))))
|
|
|
|
(rule
|
|
(deps
|
|
(:< lexer.ml))
|
|
(targets lexer.out)
|
|
(action
|
|
(with-stdout-to
|
|
%{targets}
|
|
(run %{bin:cppo} %{<}))))
|
|
|
|
(alias
|
|
(name DEFAULT)
|
|
(deps debug.out french.out lexer.out))
|