mirror of
https://github.com/boostorg/build.git
synced 2026-02-16 01:12:13 +00:00
32 lines
356 B
Plaintext
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 $(>) > $(<)
|
|
}
|
|
|
|
|