mirror of
https://github.com/boostorg/build.git
synced 2026-02-12 12:02:24 +00:00
26 lines
312 B
Plaintext
26 lines
312 B
Plaintext
|
|
rule target-source ( targets * : sources * : properties * )
|
|
{
|
|
}
|
|
|
|
actions target-source
|
|
{
|
|
echo "NM target source consuming " $(>)
|
|
echo "int main() {}" > $(<)
|
|
}
|
|
|
|
rule cpp-mark ( targets * : sources * : properties * )
|
|
{
|
|
}
|
|
|
|
actions cpp-mark
|
|
{
|
|
echo "CPP-MARK consuming " $(>)
|
|
touch $(<)
|
|
}
|
|
|
|
|
|
|
|
|
|
|