2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-12 12:02:24 +00:00
Files
build/test/generators-test/nm.jam
2002-08-16 14:25:22 +00:00

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 $(<)
}