2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-16 01:12:13 +00:00
Files
build/test/m1-01/project-root.jam
2002-04-17 14:10:54 +00:00

32 lines
356 B
Plaintext

empty = ;
module $(empty) {
rule yfc-compile ( target : sources + : properties )
{
ECHO "A rule " ;
DEPENDS $(target) : $(sources) ;
}
rule yfc-link ( target : sources + : properties )
{
ECHO "A rule " ;
DEPENDS $(target) : $(sources) ;
}
}
actions yfc-compile
{
echo $(>) > $(<)
}
actions yfc-link
{
echo $(>) > $(<)
}