15 lines
257 B
Text
Executable file
15 lines
257 B
Text
Executable file
(rule
|
|
(alias foo)
|
|
(action (echo Hello!)))
|
|
|
|
(rule
|
|
(targets foo.txt)
|
|
(mode promote-until-clean)
|
|
(action
|
|
(with-stdout-to %{targets} (echo "Foo"))))
|
|
|
|
(rule
|
|
(targets @bar)
|
|
(mode promote-until-clean)
|
|
(action
|
|
(with-stdout-to %{targets} (echo "Bar"))))
|